mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-06-28 16:20:34 +08:00
7 lines
177 B
Python
7 lines
177 B
Python
from datetime import datetime, timezone
|
|
|
|
|
|
def utcnow() -> datetime:
|
|
"""Return the current utc date and time with tzinfo set to UTC."""
|
|
return datetime.now(timezone.utc)
|