diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 78e54b5..94bf760 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -2,12 +2,12 @@ ci: autoupdate_schedule: monthly repos: - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.14.14 + rev: v0.15.4 hooks: - id: ruff-check - id: ruff-format - repo: https://github.com/python-jsonschema/check-jsonschema - rev: 0.36.1 + rev: 0.37.0 hooks: - id: check-github-workflows - id: check-readthedocs diff --git a/tests/conftest.py b/tests/conftest.py index 64b44ec..91da191 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -140,7 +140,7 @@ class Student(Base): # Test complex column property course_count = column_property( sa.select(sa.func.count(student_course.c.course_id)) - .where(student_course.c.student_id == id) + .where(student_course.c.student_id == id) # noqa: A003 .scalar_subquery() )