Skip to content

Commit

Permalink
FIX(types): TypeVar was not instantiated
Browse files Browse the repository at this point in the history
  • Loading branch information
balbasty committed Jun 23, 2024
1 parent e557447 commit e399f9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bounds/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class BoundType(Enum):
nocheck = -1


T = TypeVar
T = TypeVar('T')

SequenceOrScalar = Union[T, Sequence[T]]
"""Either an element or type `T`, or a sequence of elements of type `T`."""
Expand Down

0 comments on commit e399f9a

Please sign in to comment.