Skip to content

Commit b4fc796

Browse files
committed
Indentation
1 parent 69f5303 commit b4fc796

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

python/plugins/processing/gui/BatchAlgorithmDialog.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def runAlgorithm(self):
8989
if not param.checkValueIsAcceptable(wrapper.parameterValue()):
9090
self.messageBar().pushMessage("", self.tr('Wrong or missing parameter value: {0} (row {1})').format(
9191
param.description(), row + 1),
92-
level=Qgis.Warning, duration=5)
92+
level=Qgis.Warning, duration=5)
9393
return
9494
col += 1
9595
count_visible_outputs = 0
@@ -112,7 +112,7 @@ def runAlgorithm(self):
112112
else:
113113
self.messageBar().pushMessage("", self.tr('Wrong or missing output value: {0} (row {1})').format(
114114
out.description(), row + 1),
115-
level=Qgis.Warning, duration=5)
115+
level=Qgis.Warning, duration=5)
116116
return
117117

118118
alg_parameters.append(parameters)

python/plugins/processing/gui/BatchPanel.py

-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,6 @@ def initWidgets(self):
139139
column, QTableWidgetItem(out.description()))
140140
column += 1
141141

142-
143142
# Add an empty row to begin
144143
self.addRow()
145144

0 commit comments

Comments
 (0)