1
0
Fork 0
mirror of synced 2024-06-17 10:04:43 +12:00
Rare/rare/components/tabs/store/api/models/utils.py

6 lines
143 B
Python
Raw Normal View History

from datetime import datetime, timezone
def parse_date(date: str):
2024-02-13 05:29:39 +13:00
return datetime.fromisoformat(date[:-1]).replace(tzinfo=timezone.utc)