From ee824c856bbddbde677493c1c65552dfa71112c5 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Mon, 3 Nov 2025 18:56:37 +0100 Subject: [PATCH] Time scheduler - Remove cache on time lookup --- changedetectionio/time_handler.py | 1 - 1 file changed, 1 deletion(-) diff --git a/changedetectionio/time_handler.py b/changedetectionio/time_handler.py index 9357c398..cb03f1cc 100644 --- a/changedetectionio/time_handler.py +++ b/changedetectionio/time_handler.py @@ -14,7 +14,6 @@ class Weekday(IntEnum): Saturday = 5 Sunday = 6 -@lru_cache(maxsize=100) def am_i_inside_time( day_of_week: str, time_str: str,