mirror of
https://github.com/rendies/People-Counting-in-Real-Time.git
synced 2025-10-28 19:13:04 +07:00
small time fix
This commit is contained in:
4
Run.py
4
Run.py
@@ -343,8 +343,8 @@ def run():
|
||||
if config.Scheduler:
|
||||
##Runs for every 1 second
|
||||
#schedule.every(1).seconds.do(run)
|
||||
##Runs at every day (9:00 am). You can change it.
|
||||
schedule.every().day.at("9:00").do(run)
|
||||
##Runs at every day (09:00 am). You can change it.
|
||||
schedule.every().day.at("09:00").do(run)
|
||||
|
||||
while 1:
|
||||
schedule.run_pending()
|
||||
|
||||
Reference in New Issue
Block a user