Skip to content

Commit 12b533b

Browse files
committed
Fix ruff
1 parent 60d5feb commit 12b533b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypyc/irbuild/statement.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -750,7 +750,7 @@ def transform_try_finally_stmt_async(
750750
# Exception case - need to catch to clear the error indicator
751751
builder.activate_block(err_handler)
752752
# Catch the error to clear Python's error indicator
753-
old_exc = builder.call_c(error_catch_op, [], line)
753+
builder.call_c(error_catch_op, [], line)
754754
# We're not going to use old_exc since it won't survive await
755755
# The exception is now in sys.exc_info()
756756
builder.goto(finally_entry)

0 commit comments

Comments
 (0)