mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +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) |