Skip to content

Commit cdcc01e

Browse files
committed
[processing] removed debug lines
1 parent c491c01 commit cdcc01e

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

python/plugins/processing/gui/BatchOutputSelectionPanel.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,6 @@ def showSelectionDialog(self):
8383
path = ''
8484
filename, selectedFileFilter = QFileDialog.getSaveFileName(self,
8585
self.tr('Save file'), path, filefilter)
86-
# fix_print_with_import
87-
print(filename, selectedFileFilter)
8886
if filename:
8987
if not filename.lower().endswith(
9088
tuple(re.findall("\*(\.[a-z]{1,10})", filefilter))):

python/plugins/processing/gui/ParametersPanel.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@ def initWidgets(self):
124124
widget = QWidget()
125125
widget.setLayout(layout)
126126

127-
print wrapper
128127
tooltips = self.alg.getParameterDescriptions()
129128
widget.setToolTip(tooltips.get(param.name, param.description))
130129

python/plugins/processing/modeler/ModelerAlgorithm.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,6 @@ def getDependsOnAlgorithms(self, name):
365365
if value is None:
366366
continue
367367
if isinstance(value, CompoundValue):
368-
print value
369368
for v in value.values:
370369
if isinstance(v, ValueFromOutput):
371370
algs.add(v.alg)

0 commit comments

Comments
 (0)