Skip to content

Commit 149b35e

Browse files
committed
Indentation
1 parent b0ad13f commit 149b35e

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
@@ -140,7 +140,6 @@ def initWidgets(self):
140140
column, QTableWidgetItem(out.description()))
141141
column += 1
142142

143-
144143
# Add an empty row to begin
145144
self.addRow()
146145

0 commit comments

Comments
 (0)