mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-06-20 01:02:07 +08:00
f5d1c4f371
* check newline
* nothing catches this
old-commit-hash: 97da129e11
7 lines
143 B
Python
7 lines
143 B
Python
import datetime
|
|
|
|
MIN_DATE = datetime.datetime(year=2023, month=6, day=1)
|
|
|
|
def system_time_valid():
|
|
return datetime.datetime.now() > MIN_DATE
|