jmcarp commented on a change in pull request #4685: [AIRFLOW-3862] Check types with mypy. URL: https://github.com/apache/airflow/pull/4685#discussion_r255788761
########## File path: airflow/config_templates/airflow_local_settings.py ########## @@ -19,6 +19,8 @@ import os +from typing import Dict, Any Review comment: This is basically the same in python 2 and 3. In python >=3.5, the `typing` module is part of the standard library; otherwise, we install the backport. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
