mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 03:20:56 +07:00
Instead of just relying on the fact that some of parameters is named "self". GitOrigin-RevId: c9c0d1d4bbcecb93a84a3dc451485fa70790ca6d
8 lines
127 B
Python
8 lines
127 B
Python
class SomeClass:
|
|
@classmethod
|
|
def f<caret>oo(cls, arg1, arg2):
|
|
pass
|
|
|
|
|
|
SomeClass.foo(1, 2)
|
|
SomeClass().foo(1, 2) |