Skip to content

Commit 4ca7329

Browse files
committed
update and re-run ruff
1 parent 4fec17b commit 4ca7329

3 files changed

Lines changed: 24 additions & 23 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ dev = [
5151
# Linters & Formatters
5252
"mypy[faster-cache] >=1.16",
5353
"pyright[nodejs] >=1.1.400", # reportPrivateImportUsage behaviour change
54-
"ruff >=0.11.8",
54+
"ruff >=0.11.13",
5555
#
5656
# Types
5757
"scipy-stubs >=1.14.1.1",

src/utils.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -312,8 +312,9 @@ def list_processes():
312312
if line
313313
]
314314

315-
return subprocess.check_output( # noqa: S603 # Known input
316-
("ps", "-eo", "comm"), text=True
315+
return subprocess.check_output(
316+
("ps", "-eo", "comm"),
317+
text=True,
317318
).splitlines()[1:] # Skip the header line
318319

319320

uv.lock

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)