From f11f7f5631ffa5cbe9a008c15278c902df174965 Mon Sep 17 00:00:00 2001 From: Matteo Campinoti Date: Tue, 17 Oct 2023 13:14:30 +0200 Subject: [PATCH] siegfried - ignore PLW1510 `subprocess.run` without explicit `check` argument --- acacore/siegfried/siegfried.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acacore/siegfried/siegfried.py b/acacore/siegfried/siegfried.py index d4b956d..e9ec841 100644 --- a/acacore/siegfried/siegfried.py +++ b/acacore/siegfried/siegfried.py @@ -252,7 +252,7 @@ def run(self, *args: str) -> CompletedProcess: Raises: IdentificationError: If Siegfried exits with a non-zero status code. """ - return _check_process(run([self.binary, *args], capture_output=True, encoding="utf-8")) + return _check_process(run([self.binary, *args], capture_output=True, encoding="utf-8")) # noqa: PLW1510 def update(self, signature: TSignature, *, set_signature: bool = True): """