summaryrefslogtreecommitdiff
path: root/puzzles/seq_try_except_finally.py
blob: ea17a167350ad303a76487bf5eb01a1bc5e6d99f (plain)
1
2
3
4
5
6
7
8
9
10
11
def f() -> None:
    file = None
    try:
        file = open('test.json')
    except Exception:
        return None
    finally:
        if file:
            file.close()

    file.name