File tree Expand file tree Collapse file tree
task-sdk/tests/task_sdk/execution_time Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -591,7 +591,10 @@ extend-select = [
591591 " PLW0127" , # Self-assignment of variable
592592 " PLW0128" , # Redeclared variable {name} in assignment
593593 " PLW0129" , # Asserting on an empty string literal will never pass
594+ " PLW0131" , # Named expression used without context
594595 " PLW0133" , # Missing raise statement on exception
596+ " PLW0177" , # Comparing against a NaN value; use math.isnan instead
597+ " PLW0211" , # First argument of a static method should not be named {argument_name}
595598 " PLW0245" , # super call is missing parentheses
596599 " PLW0406" , # Module {name} imports itself
597600 " PLW0602" , # Using global for {name} but no assignment is done
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ def setup_method() -> None:
4141 SecretCache .init ()
4242
4343 @staticmethod
44- def teardown_method (self ) -> None :
44+ def teardown_method () -> None :
4545 SecretCache .reset ()
4646
4747 def test_cache_accessible_from_other_process (self ):
You can’t perform that action at this time.
0 commit comments