mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-07-20 08:02:07 +08:00
2f33f13f8b
version: sunnypilot v0.9.7.0 release date: 2024-08-11T04:16:15 master commit: c0df551c5bbd296a1e272c1878535dec14b4e7ad
7 lines
144 B
Python
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
|