We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c95b4fa commit 7d61098Copy full SHA for 7d61098
packages/python/plotly/plotly/subplots.py
@@ -1,6 +1,7 @@
1
# -*- coding: utf-8 -*-
2
import plotly.graph_objects as go
3
-from . import _subplots as sub
+from . import _subplots as _sub
4
+from ._subplots import SubplotXY, SubplotDomain, SubplotRef # noqa: F401
5
6
7
def make_subplots(
@@ -301,7 +302,7 @@ def make_subplots(
301
302
Figure(...)
303
"""
304
- return sub.make_subplots(
305
+ return _sub.make_subplots(
306
rows,
307
cols,
308
shared_xaxes,
0 commit comments