Skip to content

Commit

Permalink
siegfried - ignore PLW1510
Browse files Browse the repository at this point in the history
`subprocess.run` without explicit `check` argument
  • Loading branch information
MatteoCampinoti94 committed Oct 17, 2023
1 parent 3b38d07 commit f11f7f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acacore/siegfried/siegfried.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
"""
Expand Down

0 comments on commit f11f7f5

Please sign in to comment.