summaryrefslogtreecommitdiff
path: root/puzzles/30_try_except_finally.py
diff options
context:
space:
mode:
Diffstat (limited to 'puzzles/30_try_except_finally.py')
-rw-r--r--puzzles/30_try_except_finally.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/puzzles/30_try_except_finally.py b/puzzles/30_try_except_finally.py
deleted file mode 100644
index d63ab10..0000000
--- a/puzzles/30_try_except_finally.py
+++ /dev/null
@@ -1,8 +0,0 @@
-def foo() -> None:
- file = None
- try:
- file = open('test.json')
- except Exception:
- return None
- finally:
- file.name # error