From b9e3d9baf1bee977a9000b07cdc0c403ec186a7e Mon Sep 17 00:00:00 2001 From: Laurent Date: Thu, 1 Jan 2026 03:19:55 +0100 Subject: [PATCH] Oops --- api/mosquitto/data/mosquitto.db | Bin 164 -> 164 bytes rpi/controllers/GameController.py | 1 - rpi/services/game_service.py | 11 ++++------- 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/api/mosquitto/data/mosquitto.db b/api/mosquitto/data/mosquitto.db index 91abb73f48c0187a8ef7ed288ff8607b7ac1c65c..d4d2eaab1c1609567e7abe0345bdda8e03908b1e 100644 GIT binary patch delta 12 TcmZ3&xP) tuple[bytes, str] | None: try : if not self._has_started : - raise ServiceException("Game hasn't started yet.") + raise Exception("Game hasn't started yet.") self._clock_service.switch() return self._detection_service.analyze_single_frame() - except ServiceException as se: - print(se) - return None - except Exception as ex: - print(ex) - return None \ No newline at end of file + except Exception as e: + print(e) + raise ServiceException(e)