diff options
author | Martin Fischer <martin@push-f.com> | 2022-02-25 08:26:09 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2022-02-25 08:26:09 +0100 |
commit | 0bea98520c8fbefab29b60c25c5586747f9bf6f1 (patch) | |
tree | 0b8c960bfdbe6a349349798c4ccef38a0696c35b /puzzles/20_try_except_finally.py | |
parent | cab35e3dfd2fa2d41a045b79e9c247ddcd84cf52 (diff) |
rename puzzles
Diffstat (limited to 'puzzles/20_try_except_finally.py')
-rw-r--r-- | puzzles/20_try_except_finally.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/puzzles/20_try_except_finally.py b/puzzles/20_try_except_finally.py deleted file mode 100644 index d63ab10..0000000 --- a/puzzles/20_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 |