mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
[processing] removed debug lines
This commit is contained in:
parent
c491c01266
commit
cdcc01e97c
@ -83,8 +83,6 @@ class BatchOutputSelectionPanel(QWidget):
|
||||
path = ''
|
||||
filename, selectedFileFilter = QFileDialog.getSaveFileName(self,
|
||||
self.tr('Save file'), path, filefilter)
|
||||
# fix_print_with_import
|
||||
print(filename, selectedFileFilter)
|
||||
if filename:
|
||||
if not filename.lower().endswith(
|
||||
tuple(re.findall("\*(\.[a-z]{1,10})", filefilter))):
|
||||
|
@ -124,7 +124,6 @@ class ParametersPanel(BASE, WIDGET):
|
||||
widget = QWidget()
|
||||
widget.setLayout(layout)
|
||||
|
||||
print wrapper
|
||||
tooltips = self.alg.getParameterDescriptions()
|
||||
widget.setToolTip(tooltips.get(param.name, param.description))
|
||||
|
||||
|
@ -365,7 +365,6 @@ class ModelerAlgorithm(GeoAlgorithm):
|
||||
if value is None:
|
||||
continue
|
||||
if isinstance(value, CompoundValue):
|
||||
print value
|
||||
for v in value.values:
|
||||
if isinstance(v, ValueFromOutput):
|
||||
algs.add(v.alg)
|
||||
|
Loading…
x
Reference in New Issue
Block a user