Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,20 @@ repos:
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/tox-dev/pyproject-fmt
rev: "v2.21.0"
rev: "v2.21.1"
hooks:
- id: pyproject-fmt
- repo: https://github.com/astral-sh/uv-pre-commit
rev: 0.11.6
hooks:
- id: uv-lock
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.1.0
rev: v4.0.0-alpha.8
hooks:
- id: prettier
args: ["--tab-width", "2"]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.7
rev: v0.15.10
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
Expand All @@ -51,7 +51,7 @@ repos:
hooks:
- id: codespell
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.20.0
rev: v1.20.1
hooks:
- id: mypy
additional_dependencies: []
2 changes: 1 addition & 1 deletion tests/test_dunder_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

def test_can_run_as_python_module():
"""Run the CLI as a Python module."""
result = subprocess.run( # noqa: S603
result = subprocess.run(
[sys.executable, "-m", "decryptpdf", "--help"],
check=True,
capture_output=True,
Expand Down
Loading