Skip to content

Commit 61a9e13

Browse files
[pre-commit.ci] pre-commit autoupdate (#185)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.9.6 → v0.11.2](astral-sh/ruff-pre-commit@v0.9.6...v0.11.2) - [github.com/sourcery-ai/sourcery: v1.34.0 → v1.35.0](sourcery-ai/sourcery@v1.34.0...v1.35.0) * ignore ARG004 (Unused static method argument: kwargs) --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Nathan Patton <npatton@gmail.com>
1 parent e5f15e5 commit 61a9e13

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ repos:
2828
- id: sort-simple-yaml
2929
- id: trailing-whitespace
3030
- repo: https://github.com/astral-sh/ruff-pre-commit
31-
rev: v0.9.6
31+
rev: v0.11.2
3232
hooks:
3333
- id: ruff
3434
args: [--fix, --exit-non-zero-on-fix]
@@ -40,7 +40,7 @@ repos:
4040
args: ["--config-file", "pyproject.toml", "--ignore-missing-imports"]
4141
#args: [--strict, --ignore-missing-imports]
4242
- repo: https://github.com/sourcery-ai/sourcery
43-
rev: v1.34.0
43+
rev: v1.35.0
4444
hooks:
4545
- id: sourcery
4646
# The best way to use Sourcery in a pre-commit hook:

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,16 +96,16 @@ ignore = [
9696
"docs/source/conf.py" = ["A001", "E501"]
9797
"pythonbible/__init__.py" = ["F401"]
9898
"pythonbible/bible/bible.py" = ["PLR0913", "FBT"]
99-
"pythonbible/books.py" = ["ARG003", "PYI034"]
100-
"pythonbible/book_groups.py" = ["ARG003", "PYI034"]
99+
"pythonbible/books.py" = ["ARG003", "ARG004", "PYI034"]
100+
"pythonbible/book_groups.py" = ["ARG003", "ARG004", "PYI034"]
101101
"pythonbible/counters/book_counter.py" = ["TCH001"]
102102
"pythonbible/counters/chapter_counter.py" = ["TCH001"]
103103
"pythonbible/counters/verse_counter.py" = ["TCH001"]
104104
"pythonbible/errors.py" = ["PLR0913"]
105105
"pythonbible/formatter.py" = ["A005", "ANN401", "FBT", "PLR0911"]
106106
"pythonbible/parser.py" = ["A005", "PLR2004"]
107107
"pythonbible/roman_numeral_util.py" = ["E741"]
108-
"pythonbible/versions.py" = ["ARG003", "PYI034"]
108+
"pythonbible/versions.py" = ["ARG003", "ARG004", "PYI034"]
109109
"tests/*.py" = ["D100", "D103", "D104", "PLR2004", "S101", "TRY301"]
110110
"tests/conftest.py" = ["E501", "RUF"]
111111
"tests/errors_test.py" = ["PT017"]

0 commit comments

Comments
 (0)