From 8b25e2f38de556ec6fdfffd27518ebec8393fe6e Mon Sep 17 00:00:00 2001 From: Thomas A Caswell Date: Thu, 1 Oct 2020 11:18:57 -0400 Subject: [PATCH] Backport PR #18621: Fix singleshot timers in wx. --- lib/matplotlib/backends/backend_wx.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/matplotlib/backends/backend_wx.py b/lib/matplotlib/backends/backend_wx.py index 460057cc30e6..0b94f2116ada 100644 --- a/lib/matplotlib/backends/backend_wx.py +++ b/lib/matplotlib/backends/backend_wx.py @@ -87,9 +87,6 @@ def _timer_set_interval(self): if self._timer.IsRunning(): self._timer_start() # Restart with new interval. - def _timer_set_single_shot(self): - self._timer.Start() - class RendererWx(RendererBase): """