Skip to content

Commit 282fb5c

Browse files
committed
apply python formatting
1 parent 8a90039 commit 282fb5c

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

devops/scripts/benchmarks/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ def validate_and_parse_env_args(env_args):
424424
"--output-dir",
425425
type=str,
426426
help="Location for output files, if --output-html or --output-markdown was specified.",
427-
default=options.output_directory,
427+
default=options.output_directory,
428428
)
429429
parser.add_argument(
430430
"--dry-run",

devops/scripts/benchmarks/options.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
from presets import presets
66

7+
78
class Compare(Enum):
89
LATEST = "latest"
910
AVERAGE = "average"
@@ -46,4 +47,5 @@ class Options:
4647
custom_results_dir = None
4748
build_jobs: int = multiprocessing.cpu_count()
4849

50+
4951
options = Options()

devops/scripts/benchmarks/utils/result.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ class Result:
2929
lower_is_better: bool = True
3030
suite: str = "Unknown"
3131

32+
3233
@dataclass_json
3334
@dataclass
3435
class BenchmarkRun:

0 commit comments

Comments
 (0)