From 97ee9f5ccd79a1fc64ca979c5ed9c730a3f74659 Mon Sep 17 00:00:00 2001 From: Alex Frantz Date: Tue, 5 May 2026 16:53:58 -0400 Subject: [PATCH] make sleep longer --- scoreboard.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scoreboard.py b/scoreboard.py index 60171c6..fb60d89 100644 --- a/scoreboard.py +++ b/scoreboard.py @@ -410,8 +410,7 @@ def run(): graphics.DrawText(canvas, font, 10, 22, graphics.Color(*Colors.RED.value), "No games today") canvas = matrix.SwapOnVSync(canvas) - sleep(0.03) - print(current_preferred_game) + sleep(10) if __name__ == "__main__": run()