Skip to content

Commit f60f811

Browse files
committed
fixed up a few imports :)
1 parent d2cbd6d commit f60f811

File tree

8 files changed

+14
-7
lines changed

8 files changed

+14
-7
lines changed

plotly/graph_objs/graph_objs.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
from __future__ import absolute_import
2626

2727
import copy
28+
import sys
2829
import warnings
2930
from collections import OrderedDict
3031

plotly/grid_objs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
"""
66
from __future__ import absolute_import
77

8-
from plotly.grid_objs import Grid, Column
8+
from plotly.grid_objs.grid_objs import Grid, Column

plotly/tests/test_optional/test_matplotlylib/test_annotations.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
matplotlib.use('Agg')
66
import matplotlib.pyplot as plt
77

8-
from plotly.tests.test_optional.optional_utils import compare_dict, run_fig
8+
from plotly.tests.utils import compare_dict
9+
from plotly.tests.test_optional.optional_utils import run_fig
910
from plotly.tests.test_optional.test_matplotlylib.data.annotations import *
1011

1112

plotly/tests/test_optional/test_matplotlylib/test_axis_scales.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
matplotlib.use('Agg')
66
import matplotlib.pyplot as plt
77

8-
from plotly.tests.test_optional.optional_utils import compare_dict, run_fig
8+
from plotly.tests.utils import compare_dict
9+
from plotly.tests.test_optional.optional_utils import run_fig
910
from plotly.tests.test_optional.test_matplotlylib.data.axis_scales import *
1011

1112

plotly/tests/test_optional/test_matplotlylib/test_bars.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
matplotlib.use('Agg')
66
import matplotlib.pyplot as plt
77

8-
from plotly.tests.test_optional.optional_utils import compare_dict, run_fig
8+
from plotly.tests.utils import compare_dict
9+
from plotly.tests.test_optional.optional_utils import run_fig
910
from plotly.tests.test_optional.test_matplotlylib.data.bars import *
1011

1112

plotly/tests/test_optional/test_matplotlylib/test_lines.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
matplotlib.use('Agg')
66
import matplotlib.pyplot as plt
77

8-
from plotly.tests.test_optional.optional_utils import compare_dict, run_fig
8+
from plotly.tests.utils import compare_dict
9+
from plotly.tests.test_optional.optional_utils import run_fig
910
from plotly.tests.test_optional.test_matplotlylib.data.lines import *
1011

1112

plotly/tests/test_optional/test_matplotlylib/test_scatter.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
matplotlib.use('Agg')
66
import matplotlib.pyplot as plt
77

8-
from plotly.tests.test_optional.optional_utils import compare_dict, run_fig
8+
from plotly.tests.utils import compare_dict
9+
from plotly.tests.test_optional.optional_utils import run_fig
910
from plotly.tests.test_optional.test_matplotlylib.data.scatter import *
1011

1112

plotly/tests/test_optional/test_matplotlylib/test_subplots.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
from matplotlib.gridspec import GridSpec
77
import matplotlib.pyplot as plt
88

9-
from plotly.tests.test_optional.optional_utils import compare_dict, run_fig
9+
from plotly.tests.utils import compare_dict
10+
from plotly.tests.test_optional.optional_utils import run_fig
1011
from plotly.tests.test_optional.test_matplotlylib.data.subplots import *
1112

1213

0 commit comments

Comments
 (0)