From 0bea98520c8fbefab29b60c25c5586747f9bf6f1 Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Fri, 25 Feb 2022 08:26:09 +0100 Subject: rename puzzles --- puzzles/50_typevar_constrained.py | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 puzzles/50_typevar_constrained.py (limited to 'puzzles/50_typevar_constrained.py') diff --git a/puzzles/50_typevar_constrained.py b/puzzles/50_typevar_constrained.py deleted file mode 100644 index 4cff369..0000000 --- a/puzzles/50_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]) -> None: - check_v(a) -- cgit v1.2.3