From 24610e4b9f9d363c2b341ce5a9a3a70b8a5d35b8 Mon Sep 17 00:00:00 2001 From: Sid <27780930+autinerd@users.noreply.github.com> Date: Mon, 20 Jan 2025 21:09:28 +0100 Subject: [PATCH] Enable Ruff B035 (#135883) --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index d5674cf7571..5cc7727e136 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -722,6 +722,7 @@ select = [ "B024", # `{name}` is an abstract base class, but it has no abstract methods or properties "B026", # Star-arg unpacking after a keyword argument is strongly discouraged "B032", # Possible unintentional type annotation (using :). Did you mean to assign (using =)? + "B035", # Dictionary comprehension uses static key "B904", # Use raise from to specify exception cause "B905", # zip() without an explicit strict= parameter "BLE",