small time fix

This commit is contained in:
Sai Subhakar T 2022-02-28 18:30:49 +01:00 committed by GitHub
parent a9661f5d59
commit c3799061f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

4
Run.py
View File

@ -343,8 +343,8 @@ def run():
if config.Scheduler: if config.Scheduler:
##Runs for every 1 second ##Runs for every 1 second
#schedule.every(1).seconds.do(run) #schedule.every(1).seconds.do(run)
##Runs at every day (9:00 am). You can change it. ##Runs at every day (09:00 am). You can change it.
schedule.every().day.at("9:00").do(run) schedule.every().day.at("09:00").do(run)
while 1: while 1:
schedule.run_pending() schedule.run_pending()