Skip to content

Commit

Permalink
fix type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Avrahami committed Jul 7, 2024
1 parent db58a4e commit 7680389
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion envolved/envvar.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
List,
Mapping,
MutableSet,
NoReturn,
Optional,
Sequence,
Type,
Expand All @@ -35,7 +36,7 @@
if sys.version_info >= (3, 10):
from types import EllipsisType
else:
EllipsisType = type(...)
EllipsisType = NoReturn # there's no right way to do this in 3.9

T = TypeVar("T")
Self = TypeVar("Self")
Expand Down

0 comments on commit 7680389

Please sign in to comment.