Pedrinhonitz commented on code in PR #67623:
URL: https://github.com/apache/airflow/pull/67623#discussion_r3314757866
##########
providers/amazon/tests/unit/amazon/aws/hooks/test_s3.py:
##########
@@ -43,7 +43,7 @@
unify_bucket_name_and_key,
)
from airflow.providers.common.compat.sdk import AirflowException
-from airflow.utils.timezone import datetime
+import pendulum # replaces airflow.utils.timezone datetime
Review Comment:
Wouldn't that break lines 377 and 378?
Wouldn't it be necessary to update them to
```python
pendulum.datetime(...)
```
or use the time zone present in the SDK?
--
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]