We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent ad44a50 commit ce14633Copy full SHA for ce14633
python/plugins/processing/algs/saga/SagaAlgorithm.py
@@ -130,9 +130,9 @@ def defineCharacteristicsFromFile(self):
130
hasRaster = False
131
hasHardcodedResampling = False
132
for param in self.parameters:
133
- if isinstance(param, ParameterRaster) or
+ if (isinstance(param, ParameterRaster) or
134
(isinstance(param, ParameterMultipleInput)
135
- and param.type == ParameterMultipleInput.TYPE_RASTER):
+ and param.type == ParameterMultipleInput.TYPE_RASTER)):
136
hasRaster = True
137
break;
138
0 commit comments