def f() -> None: file = None try: file = open('test.json') except Exception: return None finally: if file: file.close() file.name