From 9ee256ea9083a129dec9fbe0f46afb8a8fdacdec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Susana=20V=C3=A1zquez?= <3016283+svazquezco@users.noreply.github.com> Date: Thu, 31 Jul 2025 12:08:37 +0200 Subject: [PATCH] core: update Ruff ignore rules (add D107, remove UP046 and UP047) --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 8f96d506..4da0f631 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -138,6 +138,7 @@ ignore = [ "D100", "D104", "D106", + "D107", "D203", "D212", "D401", @@ -150,8 +151,6 @@ ignore = [ "PLR6301", # do not require classmethod / staticmethod when self not used "PT011", # pytest.raises({exception}) is too broad, set the match parameter or use a more specific exception "TRY003", # long exception messages from `tryceratops` - "UP046", # Doesn't properly work with ParamSpec and python 3.12 - "UP047", # Doesn't properly work with ParamSpec and python 3.12 ] external = [ "WPS" ]