Skip to content

Commit

Permalink
[processing] removed debug lines
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Oct 5, 2016
1 parent c491c01 commit cdcc01e
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions python/plugins/processing/gui/BatchOutputSelectionPanel.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,6 @@ def showSelectionDialog(self):
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))):
Expand Down
1 change: 0 additions & 1 deletion python/plugins/processing/gui/ParametersPanel.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ def initWidgets(self):
widget = QWidget()
widget.setLayout(layout)

print wrapper
tooltips = self.alg.getParameterDescriptions()
widget.setToolTip(tooltips.get(param.name, param.description))

Expand Down
1 change: 0 additions & 1 deletion python/plugins/processing/modeler/ModelerAlgorithm.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,6 @@ def getDependsOnAlgorithms(self, name):
if value is None:
continue
if isinstance(value, CompoundValue):
print value
for v in value.values:
if isinstance(v, ValueFromOutput):
algs.add(v.alg)
Expand Down

0 comments on commit cdcc01e

Please sign in to comment.