summaryrefslogtreecommitdiff
path: root/puzzles/22_protocol_missing_member.py
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2022-02-25 08:02:46 +0100
committerMartin Fischer <martin@push-f.com>2022-02-25 08:24:47 +0100
commitcab35e3dfd2fa2d41a045b79e9c247ddcd84cf52 (patch)
tree0b31080d54c347575962ce6621a604b437514e12 /puzzles/22_protocol_missing_member.py
parent232e804c851322c825b5f0e627ca86b4db7d639f (diff)
move control flow puzzles before typing puzzles
Diffstat (limited to 'puzzles/22_protocol_missing_member.py')
-rw-r--r--puzzles/22_protocol_missing_member.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/puzzles/22_protocol_missing_member.py b/puzzles/22_protocol_missing_member.py
deleted file mode 100644
index 79bd70e..0000000
--- a/puzzles/22_protocol_missing_member.py
+++ /dev/null
@@ -1,7 +0,0 @@
-from typing import Protocol
-
-class P(Protocol):
- x: int
-
-class B(P): # error
- pass