We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3d5c5a commit 07ea50cCopy full SHA for 07ea50c
1 file changed
traitlets/__init__.py
@@ -1,4 +1,5 @@
1
"""Traitlets Python configuration system"""
2
+
3
from __future__ import annotations
4
5
import typing as _t
@@ -12,14 +13,15 @@
12
13
from .utils.warnings import warn
14
15
__all__ = [
- "traitlets",
16
- "__version__",
17
- "version_info",
18
"Bunch",
19
- "signature_has_traits",
20
- "import_item",
21
"Sentinel",
+ "__version__",
+ "import_item",
+ "signature_has_traits",
+ "traitlets",
22
+ "version_info",
23
]
24
+__all__ += traitlets.__all__
25
26
27
class Sentinel(traitlets.Sentinel): # type:ignore[name-defined, misc]
0 commit comments