From 7af5d6d659741f394e67dd32c76ffec6689d85ca Mon Sep 17 00:00:00 2001 From: alex Date: Mon, 5 Sep 2022 09:02:15 +0200 Subject: [PATCH] Interval time changed --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 9639142..3811924 100755 --- a/main.py +++ b/main.py @@ -162,8 +162,8 @@ def start_bot(): bot = Bot() -schedule.every().day.at("07:00").do(run_threaded, start_bot) -schedule.every().day.at("21:00").do(run_threaded, start_bot) +schedule.every().day.at("05:00").do(run_threaded, start_bot) +schedule.every().day.at("19:00").do(run_threaded, start_bot) while True: schedule.run_pending()