uranusjr commented on a change in pull request #19060: URL: https://github.com/apache/airflow/pull/19060#discussion_r732165202
########## File path: airflow/__main__.py ########## @@ -19,20 +19,31 @@ # under the License. """Main executable module""" - +import logging import os +import warnings import argcomplete +from airflow import PY310 from airflow.cli import cli_parser from airflow.configuration import conf +from airflow.utils.docs import get_docs_url + +log = logging.getLogger(__file__) Review comment: No longer used? -- 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