From c0db4ed95908c0774815da22d4e810c2a5a7a266 Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Thu, 24 Feb 2022 08:03:07 +0100 Subject: prefix numbers to puzzles --- puzzles/tricky_typevar_constrained.py | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 puzzles/tricky_typevar_constrained.py (limited to 'puzzles/tricky_typevar_constrained.py') 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) -- cgit v1.2.3