Files
sunnypilot/common/time.py
Adeeb Shihadeh f99c674341 update min valid time
old-commit-hash: bc5fdf24ae
2024-01-30 15:00:41 -08:00

7 lines
144 B
Python

import datetime
MIN_DATE = datetime.datetime(year=2024, month=1, day=28)
def system_time_valid():
return datetime.datetime.now() > MIN_DATE