rdblue commented on code in PR #4908: URL: https://github.com/apache/iceberg/pull/4908#discussion_r885095705
########## python/src/iceberg/utils/datetime.py: ########## @@ -17,7 +17,9 @@ """Helper methods for working with date/time representations """ import re -from datetime import date, datetime, time +from datetime import date, datetime, time, timedelta + +import pytz Review Comment: I don't think this is needed. Instead of using pytz, this should convert using the python built-ins. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
