We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a0603b commit 43eb776Copy full SHA for 43eb776
1 file changed
autotime/__init__.py
@@ -27,11 +27,11 @@ class LineWatcher(object):
27
"""
28
__slots__ = ['start_time', 'timestamp']
29
30
- def start(self):
+ def start(self, *args, **kwargs):
31
self.timestamp = localtime()
32
self.start_time = monotonic()
33
34
- def stop(self):
+ def stop(self, *args, **kwargs):
35
delta = monotonic() - self.start_time
36
print(
37
u'time: {} (started: {})'.format(
0 commit comments