Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Sep 3, 2023
1 parent 2a2684b commit 59cc339
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mypyc/ir/pprint.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ def visit_keep_alive(self, op: KeepAlive) -> str:
else:
steal = ""
return self.format(
"keep_alive %s%s" % (steal, ", ".join(self.format("%r", v) for v in op.src))
"keep_alive {}{}".format(steal, ", ".join(self.format("%r", v) for v in op.src))
)

def visit_unborrow(self, op: Unborrow) -> str:
Expand Down

0 comments on commit 59cc339

Please sign in to comment.