Skip to content

Commit 9373475

Browse files
committed
Indentation
1 parent a951424 commit 9373475

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

python/plugins/processing/algs/grass7/Grass7Algorithm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ def processAlgorithm(self, parameters, context, feedback):
274274
func = getattr(self.module, 'processInputs')
275275
func(self)
276276
else:
277-
self.processInputs(parameters,context)
277+
self.processInputs(parameters, context)
278278

279279
if hasattr(self.module, 'processCommand'):
280280
func = getattr(self.module, 'processCommand')
@@ -288,7 +288,7 @@ def processAlgorithm(self, parameters, context, feedback):
288288
else:
289289
self.processOutputs()
290290
else:
291-
self.processInputs(parameters,context)
291+
self.processInputs(parameters, context)
292292
self.processCommand()
293293
self.processOutputs()
294294

python/plugins/processing/algs/grass7/ext/r_mapcalc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def processInputs(alg):
6767
if cellsize:
6868
command += ' res=' + str(cellsize)
6969
else:
70-
command += ' res=' + str(alg.getDefaultCellsize(parameters,context))
70+
command += ' res=' + str(alg.getDefaultCellsize(parameters, context))
7171
alignToResolution = alg.getParameterValue(alg.GRASS_REGION_ALIGN_TO_RESOLUTION)
7272
if alignToResolution:
7373
command += ' -a'

python/plugins/processing/algs/grass7/ext/r_null.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def processInputs(alg):
6262
if cellsize:
6363
command += ' res=' + str(cellsize)
6464
else:
65-
command += ' res=' + str(alg.getDefaultCellsize(parameters,context))
65+
command += ' res=' + str(alg.getDefaultCellsize(parameters, context))
6666
alignToResolution = alg.getParameterValue(alg.GRASS_REGION_ALIGN_TO_RESOLUTION)
6767
if alignToResolution:
6868
command += ' -a'

python/plugins/processing/algs/grass7/ext/r_rgb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def processInputs(alg):
5555
if cellsize:
5656
command += ' res=' + str(cellsize)
5757
else:
58-
command += ' res=' + str(alg.getDefaultCellsize(parameters,context))
58+
command += ' res=' + str(alg.getDefaultCellsize(parameters, context))
5959
alignToResolution = alg.getParameterValue(alg.GRASS_REGION_ALIGN_TO_RESOLUTION)
6060
if alignToResolution:
6161
command += ' -a'

python/plugins/processing/algs/grass7/ext/r_shade.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def processInputs(alg):
6363
if cellsize:
6464
command += ' res=' + str(cellsize)
6565
else:
66-
command += ' res=' + str(alg.getDefaultCellsize(parameters,context))
66+
command += ' res=' + str(alg.getDefaultCellsize(parameters, context))
6767
alignToResolution = alg.getParameterValue(alg.GRASS_REGION_ALIGN_TO_RESOLUTION)
6868
if alignToResolution:
6969
command += ' -a'

python/plugins/processing/algs/grass7/ext/r_what_color.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def processInputs(alg):
5353
if cellsize:
5454
command += ' res=' + str(cellsize)
5555
else:
56-
command += ' res=' + str(alg.getDefaultCellsize(parameters,context))
56+
command += ' res=' + str(alg.getDefaultCellsize(parameters, context))
5757
alignToResolution = alg.getParameterValue(alg.GRASS_REGION_ALIGN_TO_RESOLUTION)
5858
if alignToResolution:
5959
command += ' -a'

python/plugins/processing/algs/grass7/ext/v_lrs_segment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def processInputs(alg):
4545
alg.exportedLayers[rstable]
4646
)
4747
alg.commands.append(command)
48-
alg.processInputs(context,parameters)
48+
alg.processInputs(context, parameters)
4949

5050

5151
def processCommand(alg, parameters):

python/plugins/processing/algs/grass7/ext/v_lrs_where.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def processInputs(alg):
3737
alg.exportedLayers[rstable]
3838
)
3939
alg.commands.append(command)
40-
alg.processInputs(parameters,context)
40+
alg.processInputs(parameters, context)
4141

4242

4343
def processCommand(alg, parameters):

python/plugins/processing/algs/grass7/nviz7.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def processAlgorithm(self, parameters, context, feedback):
115115
if cellsize:
116116
command += ' res=' + str(cellsize)
117117
else:
118-
command += ' res=' + str(self.getDefaultCellsize(parameters,context))
118+
command += ' res=' + str(self.getDefaultCellsize(parameters, context))
119119
commands.append(command)
120120

121121
command = 'nviz7'

0 commit comments

Comments
 (0)