dstandish commented on code in PR #34642: URL: https://github.com/apache/airflow/pull/34642#discussion_r1391723094
########## airflow/models/dag.py: ########## @@ -17,6 +17,8 @@ # under the License. from __future__ import annotations +import asyncio +import collections Review Comment: Oddly, no. I don't know why it why it wasn't an issue before. But e.g. here, collections is used. https://github.com/apache/airflow/blob/c8b4a5eff1318608788f1673c8386d47cec5bbf0/airflow/models/dag.py#L3129-L3130 Pre-commit passes and pre-commit would complane on unused import. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
