kunaljubce commented on code in PR #62758:
URL: https://github.com/apache/airflow/pull/62758#discussion_r2881966551
##########
providers/common/compat/src/airflow/providers/common/compat/sdk.py:
##########
@@ -326,7 +326,7 @@
# Module map: module_name -> module_path(s)
# For entire modules that have been moved (e.g., timezone)
-# Usage: from airflow.providers.common.compat.lazy_compat import timezone
+# Usage: from airflow.providers.common.compat.sdk import timezone
Review Comment:
```
>>> from airflow.providers.common.compat.lazy_compat import timezone
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named
'airflow.providers.common.compat.lazy_compat'
>>> from airflow.providers.common.compat.sdk import timezone
>>>
```
--
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]