mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-02 06:42:02 +00:00
11 lines
149 B
Python
11 lines
149 B
Python
def func(_, a, A):
|
|
return _, a, A
|
|
|
|
|
|
class Class:
|
|
def method(self, _, a, A):
|
|
return _, a, A
|
|
|
|
|
|
def func(_, setUp):
|
|
return _, setUp
|