Files
openide/python/testData/inspections/PyPep8NamingInspection/functionVariable.py

5 lines
152 B
Python

def do_stuff(): pass
class A:
def foo(self):
<weak_warning descr="Variable in function should be lowercase">Abc</weak_warning> = do_stuff()