Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,10 @@ extend-select = [
"PLW0127", # Self-assignment of variable
"PLW0128", # Redeclared variable {name} in assignment
"PLW0129", # Asserting on an empty string literal will never pass
"PLW0131", # Named expression used without context
"PLW0133", # Missing raise statement on exception
"PLW0177", # Comparing against a NaN value; use math.isnan instead
"PLW0211", # First argument of a static method should not be named {argument_name}
"PLW0245", # super call is missing parentheses
"PLW0406", # Module {name} imports itself
"PLW0602", # Using global for {name} but no assignment is done
Expand Down
2 changes: 1 addition & 1 deletion task-sdk/tests/task_sdk/execution_time/test_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def setup_method() -> None:
SecretCache.init()

@staticmethod
def teardown_method(self) -> None:
def teardown_method() -> None:
SecretCache.reset()

def test_cache_accessible_from_other_process(self):
Expand Down