From 0d78e106765adfe27e2139820e6321afc9f86812 Mon Sep 17 00:00:00 2001 From: Lucas Date: Thu, 31 Mar 2022 00:41:40 -0400 Subject: [PATCH] removing print statements --- pi-calendar-sign.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pi-calendar-sign.py b/pi-calendar-sign.py index 5650f0a..cdee4ab 100644 --- a/pi-calendar-sign.py +++ b/pi-calendar-sign.py @@ -38,9 +38,7 @@ def format_text(text): return formatted def update_display(color, text, cursor = False, blink = False): - print(text) text = format_text(text) - print(text) lcd.color = color lcd.message = text lcd.cursor = cursor @@ -49,9 +47,7 @@ def update_display(color, text, cursor = False, blink = False): def process_events(events): now = datetime.now(tz=TIMEZONE) - print("PROCESSING EVENTS") is_working_time = is_work_time(now.time()) - print(is_working_time) if is_event_active(events, now): if is_working_time: update_display(color=COLOR_RED, text="Meeting in Progress")