Skip to content

Commit d3fcb73

Browse files
trissimclaude
andcommitted
fix(exports): add Enableable to package exports
Fix ImportError by exporting Enableable, is_enableable, mark_enableable, and ENABLED_FIELD from the enableable module in __init__.py. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 6b2982e commit d3fcb73

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

src/python_introspect/__init__.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@
3030
DocstringParsingError,
3131
TypeResolutionError,
3232
)
33+
from .enableable import (
34+
Enableable,
35+
is_enableable,
36+
mark_enableable,
37+
ENABLED_FIELD,
38+
)
3339

3440
__all__ = [
3541
# Version
@@ -50,4 +56,9 @@
5056
"SignatureAnalysisError",
5157
"DocstringParsingError",
5258
"TypeResolutionError",
59+
# Enableable
60+
"Enableable",
61+
"is_enableable",
62+
"mark_enableable",
63+
"ENABLED_FIELD",
5364
]

0 commit comments

Comments
 (0)