Skip to content

Commit d6fca7e

Browse files
committedMar 14, 2016
Indentation update
1 parent 9ca09ab commit d6fca7e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎python/plugins/processing/algs/qgis/SplitLinesWithLines.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ def processAlgorithm(self, progress):
130130

131131
for aLine in inLines:
132132
if len(aLine.asPolyline()) > 2 or \
133-
(len(aLine.asPolyline()) == 2 and \
134-
aLine.asPolyline()[0] != aLine.asPolyline()[1]):
133+
(len(aLine.asPolyline()) == 2 and
134+
aLine.asPolyline()[0] != aLine.asPolyline()[1]):
135135
# sometimes splitting results in lines of zero length
136136
outFeat.setGeometry(aLine)
137137
writer.addFeature(outFeat)

0 commit comments

Comments
 (0)
Please sign in to comment.