diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 1a1d1bd..43add73 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,7 +1,7 @@ # See https://pre-commit.com for more information repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v5.0.0 + rev: v6.0.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer @@ -11,7 +11,7 @@ repos: - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. - rev: v0.11.12 + rev: v0.15.6 hooks: # Run the linter. - id: ruff diff --git a/eav/models/attribute.py b/eav/models/attribute.py index 1f52e7d..61dc8a7 100644 --- a/eav/models/attribute.py +++ b/eav/models/attribute.py @@ -1,5 +1,3 @@ -# ruff: noqa: UP007 - from __future__ import annotations import warnings diff --git a/eav/models/value.py b/eav/models/value.py index 5d8c0fd..a30f67e 100644 --- a/eav/models/value.py +++ b/eav/models/value.py @@ -1,4 +1,3 @@ -# ruff: noqa: UP007 from __future__ import annotations from typing import TYPE_CHECKING, ClassVar, Optional