mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 11:35:12 +07:00
Ignore only functions with unknown or redeclaration decorators in PyRedeclarationInspection
8 lines
193 B
Python
8 lines
193 B
Python
class TestClass:
|
|
@classmethod
|
|
def foo(cls):
|
|
print(0)
|
|
|
|
@classmethod
|
|
def <warning descr="Redeclared 'foo' defined above without usage">foo</warning>(cls):
|
|
print(1) |