Skip to content

Commit 010ef0b

Browse files
author
Caspar van Leeuwen
committed
Make it an f-string
1 parent 9aa77ac commit 010ef0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1279,7 +1279,7 @@ def request_bot_build_issue_comments(repo_name, pr_number):
12791279
# Pattern with accelerator matched, append to status_table
12801280
log(f"{fn}(): found build for architecture: {for_arch_match.group('for_arch')}, "
12811281
f"with accelerator {for_arch_match.group('accelerator')}")
1282-
for_arch = "`{for_arch_match.group('for_arch')}`, `{for_arch_match.group('accelerator')}`"
1282+
for_arch = f"`{for_arch_match.group('for_arch')}`, `{for_arch_match.group('accelerator')}`"
12831283
else:
12841284
# Pattern with accelerator did not match, retry without accelerator
12851285
for_arch_re = template_to_regex(for_arch_fmt)

0 commit comments

Comments
 (0)