xBis7 commented on code in PR #53722: URL: https://github.com/apache/airflow/pull/53722#discussion_r2254648021
########## providers/edge3/src/airflow/providers/edge3/models/edge_worker.py: ########## @@ -27,13 +27,18 @@ from airflow.exceptions import AirflowException from airflow.models.base import Base +from airflow.providers.edge3.version_compat import AIRFLOW_V_3_1_PLUS from airflow.stats import Stats -from airflow.utils import timezone from airflow.utils.log.logging_mixin import LoggingMixin from airflow.utils.providers_configuration_loader import providers_configuration_loaded from airflow.utils.session import NEW_SESSION, provide_session from airflow.utils.sqlalchemy import UtcDateTime +if AIRFLOW_V_3_1_PLUS: + from airflow.sdk import timezone +else: + from airflow.utils import timezone # type: ignore[attr-defined,no-redef] Review Comment: Fixed. -- 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]
