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