You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Enforce ruff/bugbear rule B018
B018 Found useless expression. Either assign it to a variable or remove it.
* Enforce ruff/bugbear rule B009
B009 Do not call `getattr` with a constant attribute value.
It is not any safer than normal property access.
* Enforce ruff/bugbear rule B010
B010 Do not call `setattr` with a constant attribute value.
It is not any safer than normal property access.
* Enforce ruff/bugbear rule B032
B032 Possible unintentional type annotation (using `:`).
Did you mean to assign (using `=`)?
* Enforce ruff/bugbear rule B904
B904 Within an `except` clause, raise exceptions with `raise ... from err` or
`raise ... from None` to distinguish them from errors in exception handling
* Enforce ruff/bugbear rule B007
B007 Loop control variable not used within loop body
* Enforce ruff/bugbear rule B028
B028 No explicit `stacklevel` keyword argument found
0 commit comments