mik-laj commented on a change in pull request #5664: [AIRFLOW-XXX] fix all missing type annotation errors from dmypy URL: https://github.com/apache/airflow/pull/5664#discussion_r307613466
########## File path: airflow/__init__.py ########## @@ -39,7 +39,7 @@ settings.initialize() -login = None +login: None = None Review comment: ```suggestion login = None # type: None ``` Unfortunately, we support Python 3.5. The annotations for variables are not supported in this version. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
