Enable Ruff B035 (#135883)

This commit is contained in:
Sid 2025-01-20 21:09:28 +01:00 committed by GitHub
parent dde6dc0421
commit 24610e4b9f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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