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