Skip to content

Commit 4412505

Browse files
committed
Linting
1 parent fd2662f commit 4412505

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

sklbench/runner/implementation.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,12 @@ def run_benchmarks(args: argparse.Namespace) -> int:
106106
with Pool(n_proc) as pool:
107107
datasets = pool.map(load_data, dataset_cases.values())
108108
if args.describe_datasets:
109-
for ((data, data_description), data_name) in zip(datasets, dataset_cases.keys()):
110-
print(f"{data_name}:\n\tshape: {data['x'].shape}\n\tparameters: {data_description}")
109+
for (data, data_description), data_name in zip(
110+
datasets, dataset_cases.keys()
111+
):
112+
print(
113+
f"{data_name}:\n\tshape: {data['x'].shape}\n\tparameters: {data_description}"
114+
)
111115
sys.exit(0)
112116
# free memory used by prefetched datasets
113117
del datasets

0 commit comments

Comments
 (0)