Files
openide/python/testData/inspections/ListCreationOnlyConsecutiveAppends_after.py
andrey.matveev eb701312fd [PY-16194] Fix passing other calls besides append on list in list creation quick fix
GitOrigin-RevId: b699acf7cf42cdd47ff8a7b2f0ab4f404eddb152
2020-07-07 04:37:07 +00:00

4 lines
43 B
Python

bar = [1]
bar.extend([2, 3])
bar.append(4)