Skip to content

Commit

Permalink
python fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Wumpf committed Jan 9, 2025
1 parent 8761ad1 commit 26f6c59
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/ci/setup_software_rasterizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ def run(
args: list[str], *, env: dict[str, str] | None = None, timeout: int | None = None, cwd: str | None = None
) -> subprocess.CompletedProcess[str]:
result = subprocess.run(args, env=env, cwd=cwd, timeout=timeout, check=False, capture_output=True, text=True)
assert result.returncode == 0, (
f"{subprocess.list2cmdline(args)} failed with exit-code {result.returncode}. Output:\n{result.stdout}\n{result.stderr}"
)
assert (
result.returncode == 0
), f"{subprocess.list2cmdline(args)} failed with exit-code {result.returncode}. Output:\n{result.stdout}\n{result.stderr}"
return result


Expand Down

0 comments on commit 26f6c59

Please sign in to comment.