XD-DENG commented on a change in pull request #4685: [AIRFLOW-3862] Check types with mypy. URL: https://github.com/apache/airflow/pull/4685#discussion_r261240712
########## 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: Understand this practice is not really followed very well in this project along the way. But we can start to follow it in the new code added at least. ---------------------------------------------------------------- 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
