potiuk commented on code in PR #31835:
URL: https://github.com/apache/airflow/pull/31835#discussion_r1227010249
##########
dev/breeze/src/airflow_breeze/commands/ci_commands.py:
##########
@@ -283,6 +282,8 @@ class WorkflowInfo(NamedTuple):
pr_number: int | None
def get_all_ga_outputs(self) -> Iterable[str]:
+ from airflow_breeze.utils.github import get_ga_output
Review Comment:
Those local imports are needed for auto-complete of breeze to work. This is
a click limitation - we have to parse the click methods when we do
auto-completion, but it is done outside of the`pipx` environment, therefore we
cannot import third-party packages while importing top-level code of the
commands.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]