Files
openide/python/testData/inspections/PyNoneFunctionAssignmentInspection/trueNegative.py
Ekaterina Tuzova d74c7f2ab1 implemented pylint E1111
Inspection is used when an assignment is done on a function call but the inferred function doesn't return anything.
2013-03-22 14:43:49 +04:00

6 lines
57 B
Python

__author__ = 'ktisha'
def foo():
return 3
b = foo()