We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3908788 commit 7978cafCopy full SHA for 7978caf
plotly/basewidget.py
@@ -15,7 +15,7 @@
15
from .serializers import custom_serializers
16
from .version import __frontend_version__
17
18
-@widgets.register()
+@widgets.register
19
class BaseFigureWidget(BaseFigure, widgets.DOMWidget):
20
"""
21
Base class for FigureWidget. The FigureWidget class is code-generated as a
plotly/grid_objs/grid_objs.py
@@ -5,7 +5,10 @@
5
6
from __future__ import absolute_import
7
8
-from collections import MutableSequence
+try:
9
+ from collections.abc import MutableSequence
10
+except ImportError:
11
+ from collections import MutableSequence
12
13
from requests.compat import json as _json
14
0 commit comments