From 0c6e4c7235235029229abe56675a157841465768 Mon Sep 17 00:00:00 2001 From: zwitschi Date: Sat, 9 May 2026 22:19:43 +0200 Subject: [PATCH] feat: enable scheduled notifications for reminders and specific messages --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 4e2b950..4c56ae2 100644 --- a/main.py +++ b/main.py @@ -747,8 +747,8 @@ def main() -> None: # start_dashboard() # Schedule notifications - # schedule.every().hour.at(":15").do(send_notification, "reminder") - # schedule.every().hour.at(":20").do(send_notification, "420") + schedule.every().hour.at(":15").do(send_notification, "reminder") + schedule.every().hour.at(":20").do(send_notification, "420") # schedule.every().hour.at(":45").do(send_notification, "reminder_halftime") # schedule.every().hour.at(":50").do(send_notification, "halftime")