From f99c6743410b8212eccae89aeea756c834123181 Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Tue, 30 Jan 2024 15:00:41 -0800 Subject: [PATCH] update min valid time old-commit-hash: bc5fdf24ae847b3a55c04d905ed5b1acd1d71fb9 --- common/time.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/time.py b/common/time.py index c8ef9cd383..f2e49eb546 100644 --- a/common/time.py +++ b/common/time.py @@ -1,6 +1,6 @@ import datetime -MIN_DATE = datetime.datetime(year=2023, month=6, day=1) +MIN_DATE = datetime.datetime(year=2024, month=1, day=28) def system_time_valid(): return datetime.datetime.now() > MIN_DATE