File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
autovizwidget/autovizwidget/plotlygraphs Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 33
44from plotly .graph_objs import Figure , Data , Layout
55from plotly .offline import iplot
6- from pandas .core .groupby import DataError
6+ try :
7+ from pandas .core .base import DataError
8+ except :
9+ from pandas .core .groupby import DataError
710
811from ..widget .encoding import Encoding
912from ..widget .invalidencodingerror import InvalidEncodingError
Original file line number Diff line number Diff line change 33
44from plotly .graph_objs import Pie , Figure , Data
55from plotly .offline import iplot
6- from pandas .core .groupby import DataError
6+ try :
7+ from pandas .core .base import DataError
8+ except :
9+ from pandas .core .groupby import DataError
710
811import autovizwidget .utils .configuration as conf
912from .graphbase import GraphBase
You can’t perform that action at this time.
0 commit comments