Skip to content

Commit 4f2da48

Browse files
committedDec 15, 2015
Indentation update
1 parent 0eb36d5 commit 4f2da48

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎python/plugins/processing/modeler/ModelerAlgorithm.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ def updateAlgorithm(self, alg):
273273
alg.outputs[out].pos = (alg.outputs[out].pos or
274274
alg.pos + QPointF(
275275
ModelerGraphicItem.BOX_WIDTH,
276-
(i + 1.5) * ModelerGraphicItem.BOX_HEIGHT))
276+
(i + 1.5) * ModelerGraphicItem.BOX_HEIGHT))
277277

278278
def removeAlgorithm(self, name):
279279
"""Returns True if the algorithm could be removed, False if
@@ -355,7 +355,7 @@ def getDependentAlgorithms(self, name):
355355
if isinstance(v, ValueFromOutput) and v.alg == name:
356356
algs.update(self.getDependentAlgorithms(alg.name))
357357
elif isinstance(value, ValueFromOutput) and value.alg == name:
358-
algs.update(self.getDependentAlgorithms(alg.name))
358+
algs.update(self.getDependentAlgorithms(alg.name))
359359

360360
return algs
361361

@@ -618,7 +618,7 @@ def _tr(s):
618618
line = lines.readline().strip('\n')
619619
tokens = line.split(',')
620620
model.addParameter(ModelerParameter(param,
621-
QPointF(float(tokens[0]), float(tokens[1]))))
621+
QPointF(float(tokens[0]), float(tokens[1]))))
622622
modelParameters.append(param.name)
623623
elif line.startswith('VALUE:'):
624624
valueLine = line[len('VALUE:'):]

0 commit comments

Comments
 (0)
Please sign in to comment.