Skip to content

Commit 5a46a9a

Browse files
authored
packaging: Add implicit exports into __init__.py (#531)
Fixes: #530
1 parent 7a2aa74 commit 5a46a9a

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/libtmux/__init__.py

+15
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,18 @@
1313
from .server import Server
1414
from .session import Session
1515
from .window import Window
16+
17+
__all__ = (
18+
"Pane",
19+
"Server",
20+
"Session",
21+
"Window",
22+
"__author__",
23+
"__copyright__",
24+
"__description__",
25+
"__email__",
26+
"__license__",
27+
"__package_name__",
28+
"__title__",
29+
"__version__",
30+
)

0 commit comments

Comments
 (0)