Skip to content

Commit 1ed7c15

Browse files
committed
flake8 fixes
1 parent dae5e30 commit 1ed7c15

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

β€Žmsys2_autobuild/cmd_build.pyβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,10 @@ def run_build(args: Any) -> None:
8484
pkg, build_type = todo
8585

8686
try:
87-
with gha_group(f"[{ pkg['repo'] }] [{ build_type }] { pkg['name'] }..."):
87+
with gha_group(f"[{pkg['repo']}] [{build_type}] {pkg['name']}..."):
8888
build_package(build_type, pkg, msys2_root, builddir)
8989
except BuildError:
90-
with gha_group(f"[{ pkg['repo'] }] [{ build_type }] { pkg['name'] }: failed"):
90+
with gha_group(f"[{pkg['repo']}] [{build_type}] {pkg['name']}: failed"):
9191
traceback.print_exc(file=sys.stdout)
9292
continue
9393

β€Žmsys2_autobuild/gh.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def get_current_run_urls() -> Optional[Dict[str, str]]:
107107
raw = commit.html_url + "/checks/" + str(run.id) + "/logs"
108108
return {"html": html, "raw": raw}
109109
else:
110-
raise Exception(f"No active job found for { run_name }")
110+
raise Exception(f"No active job found for {run_name}")
111111
return None
112112

113113

0 commit comments

Comments
Β (0)