From 60bf424461f33cf8605f53207a9a07a1a69d4e71 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Mon, 29 Sep 2025 10:12:19 +0500 Subject: [PATCH] ruff - remove from config a rule removed from ruff --- pyproject.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e3f82db534..d49d98b52b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -60,7 +60,4 @@ ignore = [ "UP030", # implicit references for positional format fields "UP031", # Replace % with .format "UP032", # Replace .format with f-string - - # Deprecated Ruff rules. - "UP038", # Use X | Y in isinstance ]