Skip to content

Commit 80de178

Browse files
committedDec 20, 2015
Indentation fix
1 parent 88d3b9f commit 80de178

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎python/plugins/processing/gui/ExtentSelectionPanel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def getMinCoveringExtent(self):
108108
if param.value:
109109
if isinstance(param, (ParameterRaster, ParameterVector)):
110110
if isinstance(param.value, (QgsRasterLayer,
111-
QgsVectorLayer)):
111+
QgsVectorLayer)):
112112
layer = param.value
113113
else:
114114
layer = dataobjects.getObject(param.value)

‎python/plugins/processing/modeler/ModelerParametersDialog.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def setupUi(self):
131131
if output.hidden:
132132
continue
133133
if isinstance(output, (OutputRaster, OutputVector, OutputTable,
134-
OutputHTML, OutputFile, OutputDirectory)):
134+
OutputHTML, OutputFile, OutputDirectory)):
135135
label = QLabel(output.description + '<'
136136
+ output.__class__.__name__ + '>')
137137
item = QLineEdit()
@@ -596,7 +596,7 @@ def setParamExtentValue(self, alg, param, widget):
596596

597597
def setParamValue(self, alg, param, widget):
598598
if isinstance(param, (ParameterRaster, ParameterVector,
599-
ParameterTable)):
599+
ParameterTable)):
600600
return self.setParamValueLayerOrTable(alg, param, widget)
601601
elif isinstance(param, ParameterBoolean):
602602
if widget.currentIndex() < 2:

0 commit comments

Comments
 (0)
Please sign in to comment.