forked from plotly/plotly.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__init__.py
40 lines (38 loc) · 1.25 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import sys
from typing import TYPE_CHECKING
if sys.version_info < (3, 7) or TYPE_CHECKING:
from ._caps import Caps
from ._colorbar import ColorBar
from ._contour import Contour
from ._hoverlabel import Hoverlabel
from ._legendgrouptitle import Legendgrouptitle
from ._lighting import Lighting
from ._lightposition import Lightposition
from ._slices import Slices
from ._spaceframe import Spaceframe
from ._stream import Stream
from ._surface import Surface
from . import caps
from . import colorbar
from . import hoverlabel
from . import legendgrouptitle
from . import slices
else:
from _plotly_utils.importers import relative_import
__all__, __getattr__, __dir__ = relative_import(
__name__,
[".caps", ".colorbar", ".hoverlabel", ".legendgrouptitle", ".slices"],
[
"._caps.Caps",
"._colorbar.ColorBar",
"._contour.Contour",
"._hoverlabel.Hoverlabel",
"._legendgrouptitle.Legendgrouptitle",
"._lighting.Lighting",
"._lightposition.Lightposition",
"._slices.Slices",
"._spaceframe.Spaceframe",
"._stream.Stream",
"._surface.Surface",
],
)