From a51c1a8187e445dd04df2cfb1a9ff069c2a6e9f6 Mon Sep 17 00:00:00 2001 From: David Rice Date: Thu, 16 Apr 2026 20:25:47 +0100 Subject: [PATCH] last --- display.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/display.py b/display.py index c4e227a..e093bb1 100644 --- a/display.py +++ b/display.py @@ -221,7 +221,7 @@ def draw_weather(surface: pygame.Surface, fonts: dict, x: int, y: int) -> None: surface.blit(fonts['medium'].render('Weather loading…', True, DIM_GRAY), (x, y)) return - idx = int(_time.time() / 5) % len(all_data) + idx = int(_time.time() / 10) % len(all_data) data = all_data[idx] week = data.get('week', []) hours = data.get('hours', [])