Skip to content

Commit 43eb776

Browse files
authored
Add support for ipython 8.17
1 parent 5a0603b commit 43eb776

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

autotime/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ class LineWatcher(object):
2727
"""
2828
__slots__ = ['start_time', 'timestamp']
2929

30-
def start(self):
30+
def start(self, *args, **kwargs):
3131
self.timestamp = localtime()
3232
self.start_time = monotonic()
3333

34-
def stop(self):
34+
def stop(self, *args, **kwargs):
3535
delta = monotonic() - self.start_time
3636
print(
3737
u'time: {} (started: {})'.format(

0 commit comments

Comments
 (0)