yapf
yapf copied to clipboard
E125 continuation line with same indent as next logical line with for loop
Input:
for row_2, key in enumerate(
['parcel_area', 'building_area_low', 'building_area_high']):
update(row_2 + 2, key)
Output:
for row_2, key in enumerate(
['parcel_area', 'building_area_low', 'building_area_high']):
update(row_2 + 2, key)
With flake8, this results in the following error for the second line:
E125 continuation line with same indent as next logical line
$ yapf --version
yapf 0.22.0
Issue still exists as of yapf 0.25.0
Issue still exists as of yapf 0.28.0
Still an issue in version 0.29.0
Still an issue in version 0.30.0
Any suggestions for working around this? Thanks!
Still an issue in version 0.32.0