kaxil commented on code in PR #46867: URL: https://github.com/apache/airflow/pull/46867#discussion_r1960099213
########## task_sdk/src/airflow/sdk/definitions/macros.py: ########## @@ -23,6 +23,15 @@ import uuid # noqa: F401 from datetime import datetime, timedelta from random import random # noqa: F401 +from typing import TYPE_CHECKING, Any + +import dateutil # noqa: F401 + +import airflow.utils.yaml as yaml # noqa: F401 Review Comment: We should at some point figure out moving things like this from core to SDK or go for redundancy to keep it decoupled -- 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]
