Skip to content

Commit ac0a7c3

Browse files
Fix plt.pause() behaviour (#291)
* Remove methods that call non-existing methods * Update backend_nbagg.py
1 parent f33046b commit ac0a7c3

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

ipympl/backend_nbagg.py

+1-8
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@
1919
FigureCanvasWebAggCore,
2020
NavigationToolbar2WebAgg,
2121
TimerTornado)
22-
from matplotlib.backend_bases import (ShowBase, NavigationToolbar2,
23-
FigureCanvasBase, cursors)
22+
from matplotlib.backend_bases import ShowBase, NavigationToolbar2, cursors
2423

2524
from ._version import js_semver
2625

@@ -242,12 +241,6 @@ def send_binary(self, data):
242241
def new_timer(self, *args, **kwargs):
243242
return TimerTornado(*args, **kwargs)
244243

245-
def start_event_loop(self, timeout):
246-
FigureCanvasBase.start_event_loop_default(self, timeout)
247-
248-
def stop_event_loop(self):
249-
FigureCanvasBase.stop_event_loop_default(self)
250-
251244

252245
class FigureManager(FigureManagerWebAgg):
253246
ToolbarCls = Toolbar

0 commit comments

Comments
 (0)