Skip to content

Commit 1980788

Browse files
committed
Fix ruff formatting
1 parent 8a8f911 commit 1980788

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

examples/benchmarking-scripts/backfill.py

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -32,21 +32,22 @@ def run_pyperformance(revision):
3232
out_file = output_dir / f"{branch}-{sha}.out"
3333
err_file = output_dir / f"{branch}-{sha}.err"
3434
with open(out_file, "w") as output, open(err_file, "w") as error:
35-
subprocess.run([
36-
"./run-pyperformance.sh",
37-
"-x",
38-
"--",
39-
"compile",
40-
"benchmark.conf",
41-
sha,
42-
branch,
43-
],
44-
stdout=output,
45-
stderr=error,
35+
subprocess.run(
36+
[
37+
"./run-pyperformance.sh",
38+
"-x",
39+
"--",
40+
"compile",
41+
"benchmark.conf",
42+
sha,
43+
branch,
44+
],
45+
stdout=output,
46+
stderr=error,
4647
)
4748

4849

49-
if __name__ == '__main__':
50+
if __name__ == "__main__":
5051
original_sigint_handler = signal.signal(signal.SIGINT, signal.SIG_IGN)
5152
pool = Pool(10)
5253
signal.signal(signal.SIGINT, original_sigint_handler)

0 commit comments

Comments
 (0)