Skip to content

Commit

Permalink
Fixing user_confirmation for quit action for prepare-provider-documen…
Browse files Browse the repository at this point in the history
…tation (apache#41507)
  • Loading branch information
amoghrajesh authored Aug 16, 2024
1 parent f2b7bb8 commit 4251a91
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
from rich.syntax import Syntax

from airflow_breeze.utils.black_utils import black_format
from airflow_breeze.utils.confirm import Answer, user_confirm
from airflow_breeze.utils.confirm import Answer, confirm_action, user_confirm
from airflow_breeze.utils.console import get_console
from airflow_breeze.utils.packages import (
HTTPS_REMOTE,
Expand Down Expand Up @@ -734,7 +734,7 @@ def update_release_notes(
)
raise PrepareReleaseDocsNoChangesException()
else:
answer = user_confirm(
answer = confirm_action(
f"Does the provider: {provider_package_id} have any changes apart from 'doc-only'?"
)
if answer == Answer.NO:
Expand Down

0 comments on commit 4251a91

Please sign in to comment.