We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86a152c commit 6f63f76Copy full SHA for 6f63f76
1 file changed
src/spikeinterface/widgets/utils_ipywidgets.py
@@ -10,7 +10,9 @@ def check_ipywidget_backend():
10
import matplotlib
11
12
mpl_backend = matplotlib.get_backend()
13
- assert "ipympl" in mpl_backend, "To use the 'ipywidgets' backend, you have to set %matplotlib widget"
+ assert (
14
+ "ipympl" in mpl_backend or "widget" in mpl_backend
15
+ ), "To use the 'ipywidgets' backend, you have to set %matplotlib widget"
16
17
18
class TimeSlider(W.HBox):
0 commit comments