diff options
Diffstat (limited to 'puzzles/tricky_typevar_constrained.py')
-rw-r--r-- | puzzles/tricky_typevar_constrained.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/puzzles/tricky_typevar_constrained.py b/puzzles/tricky_typevar_constrained.py deleted file mode 100644 index 50ce10a..0000000 --- a/puzzles/tricky_typevar_constrained.py +++ /dev/null @@ -1,9 +0,0 @@ -from typing import TypeVar, Any, Union - -V = TypeVar("V", str, bytes) - -def check_v(x: Union[V, list[V]]) -> V: - raise NotImplementedError() - -def foo(a: list[Any]): - check_v(a) |