-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Expand file tree
/
Copy path__init__.py
More file actions
31 lines (29 loc) · 963 Bytes
/
__init__.py
File metadata and controls
31 lines (29 loc) · 963 Bytes
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
import sys
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from ._colorbar import ColorBar
from ._contours import Contours
from ._hoverlabel import Hoverlabel
from ._legendgrouptitle import Legendgrouptitle
from ._lighting import Lighting
from ._lightposition import Lightposition
from ._stream import Stream
from . import colorbar
from . import contours
from . import hoverlabel
from . import legendgrouptitle
else:
from _plotly_utils.importers import relative_import
__all__, __getattr__, __dir__ = relative_import(
__name__,
[".colorbar", ".contours", ".hoverlabel", ".legendgrouptitle"],
[
"._colorbar.ColorBar",
"._contours.Contours",
"._hoverlabel.Hoverlabel",
"._legendgrouptitle.Legendgrouptitle",
"._lighting.Lighting",
"._lightposition.Lightposition",
"._stream.Stream",
],
)