-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Expand file tree
/
Copy path__init__.py
More file actions
32 lines (30 loc) · 942 Bytes
/
__init__.py
File metadata and controls
32 lines (30 loc) · 942 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
32
import sys
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from ._colorbar import ColorBar
from ._hoverlabel import Hoverlabel
from ._legendgrouptitle import Legendgrouptitle
from ._marker import Marker
from ._stream import Stream
from ._textfont import Textfont
from ._xbins import XBins
from ._ybins import YBins
from . import colorbar
from . import hoverlabel
from . import legendgrouptitle
else:
from _plotly_utils.importers import relative_import
__all__, __getattr__, __dir__ = relative_import(
__name__,
[".colorbar", ".hoverlabel", ".legendgrouptitle"],
[
"._colorbar.ColorBar",
"._hoverlabel.Hoverlabel",
"._legendgrouptitle.Legendgrouptitle",
"._marker.Marker",
"._stream.Stream",
"._textfont.Textfont",
"._xbins.XBins",
"._ybins.YBins",
],
)