Skip to content

Commit 9a60977

Browse files
committed
🙈 fix IPywidgets bug, see #32
1 parent 7e735f1 commit 9a60977

File tree

1 file changed

+1
-1
lines changed
  • plotly_resampler/figure_resampler

1 file changed

+1
-1
lines changed

plotly_resampler/figure_resampler/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
try: # Fails when IPywidgets is not installed
88
from plotly.basewidget import BaseFigureWidget
99
except (ImportError, ModuleNotFoundError):
10-
BaseFigureWidget = None
10+
BaseFigureWidget = type(None)
1111

1212
from typing import Any
1313

0 commit comments

Comments
 (0)