Added missing comma
This commit is contained in:
parent
e29bf2baf6
commit
2af9c8dd87
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ class Timeloop():
|
||||||
self.logger = logger
|
self.logger = logger
|
||||||
|
|
||||||
def _add_job(self, func, interval: timedelta, offset: timedelta=None, *args, **kwargs):
|
def _add_job(self, func, interval: timedelta, offset: timedelta=None, *args, **kwargs):
|
||||||
j = Job(interval, func, offset=offset *args, **kwargs)
|
j = Job(interval, func, offset=offset, *args, **kwargs)
|
||||||
self.jobs.append(j)
|
self.jobs.append(j)
|
||||||
|
|
||||||
def _block_main_thread(self):
|
def _block_main_thread(self):
|
||||||
|
|
Loading…
Reference in a new issue