Skip to content

Commit 66b3142

Browse files
fixed black issue
1 parent a0d60ef commit 66b3142

File tree

1 file changed

+5
-1
lines changed
  • redis_benchmarks_specification/__runner__

1 file changed

+5
-1
lines changed

redis_benchmarks_specification/__runner__/runner.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,11 @@ def delete_temporary_files(
420420

421421
for topology_spec_name in benchmark_config["redis-topologies"]:
422422
# Filter by topology if specified
423-
if args.topology and args.topology != "" and topology_spec_name != args.topology:
423+
if (
424+
args.topology
425+
and args.topology != ""
426+
and topology_spec_name != args.topology
427+
):
424428
logging.info(
425429
f"Skipping topology {topology_spec_name} as it doesn't match the requested topology {args.topology}"
426430
)

0 commit comments

Comments
 (0)