Skip to content

Commit 01fccd9

Browse files
[pre-commit.ci] pre-commit autoupdate (#701)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.14.14 → v0.15.4](astral-sh/ruff-pre-commit@v0.14.14...v0.15.4) - [github.com/python-jsonschema/check-jsonschema: 0.36.1 → 0.37.0](python-jsonschema/check-jsonschema@0.36.1...0.37.0) * address lint --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Steven Loria <git@stevenloria.com>
1 parent 58d61da commit 01fccd9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ ci:
22
autoupdate_schedule: monthly
33
repos:
44
- repo: https://github.com/astral-sh/ruff-pre-commit
5-
rev: v0.14.14
5+
rev: v0.15.4
66
hooks:
77
- id: ruff-check
88
- id: ruff-format
99
- repo: https://github.com/python-jsonschema/check-jsonschema
10-
rev: 0.36.1
10+
rev: 0.37.0
1111
hooks:
1212
- id: check-github-workflows
1313
- id: check-readthedocs

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ class Student(Base):
140140
# Test complex column property
141141
course_count = column_property(
142142
sa.select(sa.func.count(student_course.c.course_id))
143-
.where(student_course.c.student_id == id)
143+
.where(student_course.c.student_id == id) # noqa: A003
144144
.scalar_subquery()
145145
)
146146

0 commit comments

Comments
 (0)