@@ -1181,7 +1181,7 @@ def select_traces(self, selector=None, row=None, col=None, secondary_y=None):
1181
1181
)
1182
1182
1183
1183
def _perform_select_traces (self , filter_by_subplot , grid_subplot_refs , selector ):
1184
- from plotly .subplots import _get_subplot_ref_for_trace
1184
+ from plotly ._subplots import _get_subplot_ref_for_trace
1185
1185
1186
1186
# functions for filtering
1187
1187
def _filter_by_subplot_ref (trace ):
@@ -2313,7 +2313,7 @@ def append_trace(self, trace, row, col):
2313
2313
self .add_trace (trace = trace , row = row , col = col )
2314
2314
2315
2315
def _set_trace_grid_position (self , trace , row , col , secondary_y = False ):
2316
- from plotly .subplots import _set_trace_grid_reference
2316
+ from plotly ._subplots import _set_trace_grid_reference
2317
2317
2318
2318
grid_ref = self ._validate_get_grid_ref ()
2319
2319
return _set_trace_grid_reference (
@@ -2413,7 +2413,7 @@ def get_subplot(self, row, col, secondary_y=False):
2413
2413
- xaxis: plotly.graph_objs.layout.XAxis instance for subplot
2414
2414
- yaxis: plotly.graph_objs.layout.YAxis instance for subplot
2415
2415
"""
2416
- from plotly .subplots import _get_grid_subplot
2416
+ from plotly ._subplots import _get_grid_subplot
2417
2417
2418
2418
return _get_grid_subplot (self , row , col , secondary_y )
2419
2419
0 commit comments