From a374716da20c64dd6c95659d183cd09cc148b6a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ugo=20M=C3=A9da?= Date: Wed, 12 Feb 2025 00:32:34 +0100 Subject: [PATCH] fix: remove prints --- inkplate_dashboard/web.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/inkplate_dashboard/web.py b/inkplate_dashboard/web.py index ca006b3..b6d5917 100644 --- a/inkplate_dashboard/web.py +++ b/inkplate_dashboard/web.py @@ -59,9 +59,7 @@ async def get(self, request: Request) -> Response: hour=0, minute=1, second=0, microsecond=0 ) time_until_tomorrow = int((tomorrow - now).total_seconds()) - print(time_until_tomorrow) next_refresh = min(time_until_tomorrow, display.refresh_interval_sec) - print(next_refresh) headers = { "etag": etag,