File tree 3 files changed +3
-3
lines changed
packages/python/plotly/plotly/figure_factory
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ def _bullet(
35
35
horizontal_spacing = 1.0 / num_of_lanes
36
36
if not vertical_spacing :
37
37
vertical_spacing = 1.0 / num_of_lanes
38
- fig = plotly .tools .make_subplots (
38
+ fig = plotly .subplots .make_subplots (
39
39
num_of_rows ,
40
40
num_of_cols ,
41
41
print_grid = False ,
Original file line number Diff line number Diff line change 6
6
import plotly .colors as clrs
7
7
from plotly .figure_factory import utils
8
8
from plotly .graph_objs import graph_objs
9
- from plotly .tools import make_subplots
9
+ from plotly .subplots import make_subplots
10
10
11
11
pd = optional_imports .get_module ("pandas" )
12
12
Original file line number Diff line number Diff line change 5
5
from plotly import exceptions , optional_imports
6
6
import plotly .colors as clrs
7
7
from plotly .graph_objs import graph_objs
8
- from plotly .tools import make_subplots
8
+ from plotly .subplots import make_subplots
9
9
10
10
pd = optional_imports .get_module ("pandas" )
11
11
np = optional_imports .get_module ("numpy" )
You can’t perform that action at this time.
0 commit comments