Skip to content

Commit 322939b

Browse files
fix: formatting fix
Fixed formatting Signed-off-by: Dan Calavrezo <[email protected]>
1 parent a07223b commit 322939b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/quality_runners.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,9 @@ def cpp_coverage(module: Module, artifact_dir: Path) -> ProcessResult:
9292
output_dir = artifact_dir / "cpp" / module.name
9393
output_dir.mkdir(parents=True, exist_ok=True)
9494
# Find input locations
95-
bazel_coverage_output_directory = run_command(["bazel", "info", "--lockfile_mode=error", "output_path"]).stdout.strip()
95+
bazel_coverage_output_directory = run_command(
96+
["bazel", "info", "--lockfile_mode=error", "output_path"]
97+
).stdout.strip()
9698
bazel_source_directory = run_command(["bazel", "info", "--lockfile_mode=error", "output_base"]).stdout.strip()
9799

98100
genhtml_call = [

0 commit comments

Comments
 (0)