Add missing 'self' to args of Timer.finish()
This commit is contained in:
parent
2fecfbb700
commit
fe1b479b2c
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ class Timer(object):
|
||||||
def redo(self):
|
def redo(self):
|
||||||
self._done = False
|
self._done = False
|
||||||
self.set_next_due()
|
self.set_next_due()
|
||||||
def finish():
|
def finish(self):
|
||||||
self._done = True
|
self._done = True
|
||||||
def done(self):
|
def done(self):
|
||||||
return self._done
|
return self._done
|
||||||
|
|
Loading…
Reference in a new issue