Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 84cf02f

Browse files
author
SamSchott
authored
FIX: AttributeError in TimerBase.start ...
... when calling with new interval
1 parent 6ee361b commit 84cf02f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/backend_bases.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1086,7 +1086,7 @@ def start(self, interval=None):
10861086
if provided.
10871087
"""
10881088
if interval is not None:
1089-
self._set_interval(interval)
1089+
self.interval = interval
10901090
self._timer_start()
10911091

10921092
def stop(self):

0 commit comments

Comments
 (0)