Skip to content

Commit

Permalink
Fix Pylint issue reported by ruff
Browse files Browse the repository at this point in the history
PLW1510 `subprocess.run` without explicit `check` argument
  • Loading branch information
DimitriPapadopoulos committed Aug 21, 2023
1 parent 25a0725 commit 8aebc26
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions codespell_lib/tests/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ def run_codespell(
cwd=cwd,
capture_output=True,
encoding="utf-8",
check=False,
)
count = int(proc.stderr.split("\n")[-2])
return count
Expand Down

0 comments on commit 8aebc26

Please sign in to comment.