Skip to content

Commit ce14633

Browse files
committed
[processing] syntax fix
1 parent ad44a50 commit ce14633

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/plugins/processing/algs/saga/SagaAlgorithm.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,9 @@ def defineCharacteristicsFromFile(self):
130130
hasRaster = False
131131
hasHardcodedResampling = False
132132
for param in self.parameters:
133-
if isinstance(param, ParameterRaster) or
133+
if (isinstance(param, ParameterRaster) or
134134
(isinstance(param, ParameterMultipleInput)
135-
and param.type == ParameterMultipleInput.TYPE_RASTER):
135+
and param.type == ParameterMultipleInput.TYPE_RASTER)):
136136
hasRaster = True
137137
break;
138138

0 commit comments

Comments
 (0)