feat/more-ruff (#5559)
All checks were successful
continuous-integration/drone/push Build is passing

Co-authored-by: Darragh Elliott <me@delliott.net>
Reviewed-on: #5559
Co-authored-by: delliott <delliott@fsfe.org>
Co-committed-by: delliott <delliott@fsfe.org>
This commit was merged in pull request #5559.
This commit is contained in:
2025-12-11 06:05:35 +00:00
committed by tobiasd
parent 01643b297a
commit 8159a0bb0e
3 changed files with 5 additions and 2 deletions

View File

@@ -87,7 +87,8 @@ def run_command(commands: list[str]) -> str:
and command error handling across the project.
"""
try:
result = subprocess.run(
result = subprocess.run( # noqa: S603 allow callsing subprocess without knowing the args
# we validate that they are okay elsewhere in the code
commands,
capture_output=True,
# Get output as str instead of bytes