mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-17 00:04:02 -04:00
Remove unrequired cast
This commit is contained in:
parent
6eabb45043
commit
4e4c189820
@ -314,7 +314,7 @@ class ModelerParametersDialog(QDialog):
|
||||
outputs = {}
|
||||
for dest in self._alg.destinationParameterDefinitions():
|
||||
if not dest.flags() & QgsProcessingParameterDefinition.FlagHidden:
|
||||
name = str(self.valueItems[dest.name()].text())
|
||||
name = self.valueItems[dest.name()].text()
|
||||
if name.strip() != '':
|
||||
output = QgsProcessingModelOutput(name, name)
|
||||
output.setChildId(alg.childId())
|
||||
|
Loading…
x
Reference in New Issue
Block a user