Skip to content

Commit

Permalink
✏️ remove Any
Browse files Browse the repository at this point in the history
Signed-off-by: rjdbcm <[email protected]>
  • Loading branch information
rjdbcm committed Jun 9, 2024
1 parent d2804df commit c8156ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ozi/spec/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
from collections.abc import Mapping

VT = TypeVar('VT', str, int, float, None)
_Val: TypeAlias = list['_Key[Any]'] | Mapping['_Key[Any]', VT] | VT
_Key: TypeAlias = VT | _Val[Any]
_Val: TypeAlias = list['_Key[VT]'] | Mapping['_Key[VT]', VT] | VT
_Key: TypeAlias = VT | _Val[VT]
_Lambda: TypeAlias = Callable[[], '_FactoryMethod']
_FactoryMethod: TypeAlias = Callable[[], _Lambda]

Expand Down

0 comments on commit c8156ec

Please sign in to comment.