mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-02 14:52:01 +00:00
[pylint
] Don't recommend decorating staticmethods with @singledispatch
(PLE1519
, PLE1520
) (#10637)
Co-authored-by: Alex Waygood <alex.waygood@gmail.com>
This commit is contained in:
parent
b90e6df5cc
commit
0de23760ff
6 changed files with 34 additions and 42 deletions
|
@ -17,7 +17,7 @@ class Board:
|
|||
def move(self, position):
|
||||
pass
|
||||
|
||||
@singledispatchmethod # [singledispatchmethod-function]
|
||||
@singledispatchmethod # Ok
|
||||
@staticmethod
|
||||
def do(position):
|
||||
pass
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue