diff --git a/src/actions.py b/src/actions.py index 2d3110e..25790a9 100644 --- a/src/actions.py +++ b/src/actions.py @@ -53,10 +53,7 @@ async def log_temperature(): async def display_time(): while True: - try: - matrix_display.show_current_time() - except Exception as e: - raise "Failed to display time on the matrix display: {e}" + matrix_display.show_current_time() seconds_until_next_minute = 60 - datetime.now().second await asyncio.sleep(seconds_until_next_minute)