Skip to content

Commit c2cfdf3

Browse files
authored
Merge pull request #16235 from SamSchott/bugfix-TimerBase
FIX: AttributeError in TimerBase.start
2 parents a8db0ac + 84cf02f commit c2cfdf3

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)