8000 Merge pull request #16238 from meeseeksmachine/auto-backport-of-pr-16… · matplotlib/matplotlib@2bf95db · GitHub
[go: up one dir, main page]

Skip to content

Commit 2bf95db

Browse files
authored
Merge pull request #16238 from meeseeksmachine/auto-backport-of-pr-16235-on-v3.2.x
Backport PR #16235 on branch v3.2.x (FIX: AttributeError in TimerBase.start)
2 parents 594db4c + 3525fe1 commit 2bf95db

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
@@ -1103,7 +1103,7 @@ def start(self, interval=None):
11031103
if provided.
11041104
"""
11051105
if interval is not None:
1106-
self._set_interval(interval)
1106+
self.interval = interval
11071107
self._timer_start()
11081108

11091109
def stop(self):

0 commit comments

Comments
 (0)
0