Skip to content

Commit 1ae9579

Browse files
authored
Fix traitlets.__all__ (#933)
1 parent e3d5c5a commit 1ae9579

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

traitlets/__init__.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Traitlets Python configuration system"""
2+
23
from __future__ import annotations
34

45
import typing as _t
@@ -12,14 +13,15 @@
1213
from .utils.warnings import warn
1314

1415
__all__ = [
15-
"traitlets",
16-
"__version__",
17-
"version_info",
1816
"Bunch",
19-
"signature_has_traits",
20-
"import_item",
2117
"Sentinel",
18+
"__version__",
19+
"import_item",
20+
"signature_has_traits",
21+
"traitlets",
22+
"version_info",
2223
]
24+
__all__ += traitlets.__all__
2325

2426

2527
class Sentinel(traitlets.Sentinel): # type:ignore[name-defined, misc]

0 commit comments

Comments
 (0)