Skip to content

Commit cfc5432

Browse files
committed
Fix lint
Signed-off-by: Huy Do <[email protected]>
1 parent aa07b2d commit cfc5432

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/scripts/extract_benchmark_results.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,9 @@ def transform(
350350
# the device, i.e. Samsung Galaxy S22 5G instead of just Samsung
351351
for r in benchmark_results:
352352
is_private_device = job_report.get("is_private_instance", False)
353-
r["deviceInfo"]["device"] = f"{job_name} (private)" if is_private_device else job_name
353+
r["deviceInfo"]["device"] = (
354+
f"{job_name} (private)" if is_private_device else job_name
355+
)
354356

355357
# From https://github.com/pytorch/pytorch/wiki/How-to-integrate-with-PyTorch-OSS-benchmark-database
356358
return [

0 commit comments

Comments
 (0)