Files
openide/python/testData/inspections/AugmentAssignmentFunction.py

5 lines
150 B
Python

def retStr():
return ''
s1 = ''
<weak_warning descr="Assignment can be replaced with augmented assignment">s1 = s1 <caret>+ retStr()</weak_warning>