You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since Python 3.13 unaware timezone timestamps are deprecated. See deprecation warning:
encryptor.py:360: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
meta['created'] = datetime.utcfromtimestamp(source.stat().st_ctime).isoformat()
The text was updated successfully, but these errors were encountered:
Since Python 3.13 unaware timezone timestamps are deprecated. See deprecation warning:
The text was updated successfully, but these errors were encountered: