jmcarp commented on a change in pull request #4685: [AIRFLOW-3862] Check types with mypy. URL: https://github.com/apache/airflow/pull/4685#discussion_r261476559
########## File path: airflow/contrib/operators/azure_container_instances_operator.py ########## @@ -18,6 +18,9 @@ # under the License. from time import sleep +from collections import namedtuple + +from typing import Dict, Sequence Review comment: Updated. We might want to consider https://github.com/timothycrosley/isort or similar to do this consistently. ---------------------------------------------------------------- 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
