Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 4 additions & 0 deletions doc/data/messages/b/bad-staticmethod-argument/bad.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
class Klass:
Comment thread
matusvalo marked this conversation as resolved.
Outdated
@staticmethod
def mymethod(self): # [bad-staticmethod-argument]
Comment thread
matusvalo marked this conversation as resolved.
Outdated
pass
4 changes: 4 additions & 0 deletions doc/data/messages/b/bad-staticmethod-argument/good.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
class Klass:
Comment thread
matusvalo marked this conversation as resolved.
Outdated
@staticmethod
def mymethod(arg):
Comment thread
matusvalo marked this conversation as resolved.
Outdated
pass
โšก