5 lines
132 B
Python
5 lines
132 B
Python
from datetime import datetime, timedelta, timezone
|
|
|
|
DELTA_ZERO = timedelta(0)
|
|
UTC_ZERO = datetime.fromtimestamp(0, tz=timezone.utc)
|