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

7 lines
192 B
Python

class klass:
def foo(self):
pass
var = klass()
<warning descr="Statement seems to have no effect and can be replaced with a function call to have effect">var.f<caret>oo</warning>