summaryrefslogtreecommitdiff
path: root/puzzles/tricky_try_except.py
blob: d63ab10ecb54f2055804f1582c6a1b12d51983bd (plain)
1
2
3
4
5
6
7
8
def foo() -> None:
    file = None
    try:
        file = open('test.json')
    except Exception:
        return None
    finally:
        file.name # error