jscheffl commented on code in PR #49380: URL: https://github.com/apache/airflow/pull/49380#discussion_r2051785085
########## airflow-core/src/airflow/cli/cli_config.py: ########## @@ -233,6 +233,13 @@ def string_lower_type(val): action="store_true", ) +# list_dags +ARG_LIST_LOCAL = Arg( + ("-l", "--local"), + action="store_true", + help="This shows local DAGs and their import errors, not what's serialized in the DB", Review Comment: Can we please re-phrase a bit? ```suggestion help="Shows local parsed DAGs and their import errors, ignores content serialized in DB", ``` -- 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: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org