Skip to content
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ repos:
- id: pretty-format-ini
args: [--autofix]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.9.6 # Must match requirements-dev.txt
rev: v0.11.4 # Must match requirements-dev.txt
hooks:
- id: ruff
args: [--fix]
Expand Down
2 changes: 1 addition & 1 deletion src/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ def list_processes():
return [
# The first row is the process name
line.split()[0]
for line in subprocess.check_output( # noqa: S603 # Known input
for line in subprocess.check_output( # Known input
"C:/Windows/System32/tasklist.exe", text=True
).splitlines()[3:] # Skip the table header lines
if line
Expand Down