Skip to content

Commit

Permalink
typing: Let the linter have its will
Browse files Browse the repository at this point in the history
  • Loading branch information
funkyfuture committed Jan 6, 2025
1 parent fd89ac3 commit d3828f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _delb/typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down

0 comments on commit d3828f9

Please sign in to comment.