Skip to content

Commit 28514ca

Browse files
committed
Fix TimerBase call to non-existent method.
1 parent 1ee7e7b commit 28514ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/backend_bases.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1042,7 +1042,7 @@ def start(self, interval=None):
10421042
to reset the timer interval first if provided.
10431043
'''
10441044
if interval is not None:
1045-
self.set_interval(interval)
1045+
self._set_interval(interval)
10461046
self._timer_start()
10471047

10481048
def stop(self):

0 commit comments

Comments
 (0)