avoid unlimited loop in scheduler
This commit is contained in:
parent
98352c71ee
commit
00d00da858
2 changed files with 5 additions and 0 deletions
|
|
@ -96,5 +96,8 @@ class Weboob:
|
|||
def repeat(self, interval, function, *args):
|
||||
return self.scheduler.repeat(interval, function, *args)
|
||||
|
||||
def want_stop(self):
|
||||
return self.scheduler.want_stop()
|
||||
|
||||
def loop(self):
|
||||
return self.scheduler.run()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue