Added sched module for the loop

This commit is contained in:
Antonio de la Rosa 2021-07-10 00:46:11 +02:00
parent 1348eb04da
commit 873e34a3cf

View file

@ -180,7 +180,9 @@ def start():
print('Begin scheduler monit in %s...' % sec)
s=sched.scheduler(time.time, time.sleep)
run_start(s)
s.run()
if __name__=='__main__':