Skip to content

Commit 9debb52

Browse files
authored
fix: Make type aliases available at runtime
Discussion-425: #425 PR-426: #426
1 parent 196bcf4 commit 9debb52

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/griffe/_internal/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2717,7 +2717,7 @@ def __init__(
27172717
value: The type alias value.
27182718
**kwargs: See [`griffe.Object`][].
27192719
"""
2720-
super().__init__(*args, **kwargs, runtime=False)
2720+
super().__init__(*args, **kwargs)
27212721
self.value: str | Expr | None = value
27222722
"""The type alias value."""
27232723

0 commit comments

Comments
 (0)