wrap IScheduler.cancel()
This commit is contained in:
parent
896248d408
commit
a56eaf09e2
1 changed files with 3 additions and 0 deletions
|
|
@ -223,6 +223,9 @@ class Weboob(object):
|
||||||
def repeat(self, interval, function, *args):
|
def repeat(self, interval, function, *args):
|
||||||
return self.scheduler.repeat(interval, function, *args)
|
return self.scheduler.repeat(interval, function, *args)
|
||||||
|
|
||||||
|
def cancel(self, ev):
|
||||||
|
return self.scheduler.cancel(ev)
|
||||||
|
|
||||||
def want_stop(self):
|
def want_stop(self):
|
||||||
return self.scheduler.want_stop()
|
return self.scheduler.want_stop()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue