diff --git a/_delb/typing.py b/_delb/typing.py index 3b908a5..0663136 100644 --- a/_delb/typing.py +++ b/_delb/typing.py @@ -43,7 +43,7 @@ from typing import Literal, Self QualifiedName: TypeAlias = tuple[str, str] -AttributeAccessor: TypeAlias = "QualifiedName | str" +AttributeAccessor: TypeAlias = QualifiedName | str _AttributesData: TypeAlias = dict[QualifiedName, str] GenericDecorated = TypeVar("GenericDecorated", bound=Callable[..., Any])