From 533a5ffb6e6b614c9264e8841abf1d3e06997cfd Mon Sep 17 00:00:00 2001 From: LOUDO Date: Mon, 30 Sep 2024 15:39:51 +0200 Subject: [PATCH] Remove print --- src/macro/macro.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/macro/macro.py b/src/macro/macro.py index 2deaba9..9a63b9a 100644 --- a/src/macro/macro.py +++ b/src/macro/macro.py @@ -192,10 +192,8 @@ def __play_events(self): now = datetime.now() seconds_since_midnight = (now - now.replace(hour=0, minute=0, second=0, microsecond=0)).total_seconds() secondsToWait = userSettings["Playback"]["Repeat"]["Scheduled"] - seconds_since_midnight - print(secondsToWait) if secondsToWait < 0: secondsToWait = 86400 + secondsToWait # 86400 + -secondsToWait. Meaning it will happen tomorrow - print(secondsToWait) sleep(secondsToWait) for repeat in range(repeat_times): for events in range(len(self.macro_events["events"])):