mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 21:53:58 +07:00
Ignore only functions with unknown or redeclaration decorators in PyRedeclarationInspection
7 lines
177 B
Python
7 lines
177 B
Python
class TestClass:
|
|
def foo(self):
|
|
print(0)
|
|
|
|
@classmethod
|
|
def <warning descr="Redeclared 'foo' defined above without usage">foo</warning>(cls):
|
|
print(1) |