From a2242879f7a711e6f4442ba254fa3eca55c26233 Mon Sep 17 00:00:00 2001 From: Jon Michael Aanes Date: Wed, 17 Jul 2024 16:59:18 +0200 Subject: [PATCH] Cache in output --- kobo_wall_calendar/google_calendar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kobo_wall_calendar/google_calendar.py b/kobo_wall_calendar/google_calendar.py index ac2e423..58e453e 100644 --- a/kobo_wall_calendar/google_calendar.py +++ b/kobo_wall_calendar/google_calendar.py @@ -7,7 +7,7 @@ import logging logger = logging.getLogger(__name__) -SESSION = requests_cache.CachedSession('calendar') +SESSION = requests_cache.CachedSession('output/calendar') @functools.cache def get_events_for_month(ical_link: str, today: datetime.date):