Skip to content

Commit 3edd3de

Browse files
committed
chore: some updates from pre-commit
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
1 parent 2c39e45 commit 3edd3de

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ repos:
2727
- repo: https://github.com/astral-sh/ruff-pre-commit
2828
rev: v0.13.3
2929
hooks:
30-
- id: ruff
30+
- id: ruff-check
3131
args: ["--fix", "--show-fixes"]
3232
- id: ruff-format
3333

tests/test_printouts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010

1111
def test_builder_printout(capsys: pytest.CaptureFixture[str]) -> None:
1212
main()
13-
out, err = capsys.readouterr()
13+
out, _ = capsys.readouterr()
1414
assert "Detected Python Library" in out

0 commit comments

Comments
 (0)