Skip to content

Commit 7d61098

Browse files
fix subplot imports
1 parent c95b4fa commit 7d61098

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/python/plotly/plotly/subplots.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# -*- coding: utf-8 -*-
22
import plotly.graph_objects as go
3-
from . import _subplots as sub
3+
from . import _subplots as _sub
4+
from ._subplots import SubplotXY, SubplotDomain, SubplotRef # noqa: F401
45

56

67
def make_subplots(
@@ -301,7 +302,7 @@ def make_subplots(
301302
Figure(...)
302303
"""
303304

304-
return sub.make_subplots(
305+
return _sub.make_subplots(
305306
rows,
306307
cols,
307308
shared_xaxes,

0 commit comments

Comments
 (0)