Files
openide/python/testData/inspections/RemoveDecorator.py
Mikhail Golubev de08c2a947 Fix Python tests after the proofreading
GitOrigin-RevId: 2f6eb873d6321ef00d293377ec2c97195f72da21
2020-11-30 22:17:55 +00:00

8 lines
202 B
Python

class C:
@classmethod
def foo(self):
pass
<warning descr="Decorator @classmethod on a method outside the class"><caret>@classmethod</warning>
def foo(self):
print ("Constructor C was called")