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