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",