Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Jan 25, 2017
1 parent f40fb9c commit 514e55b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/lidar/fusion/Csv2Grid.py
Expand Up @@ -43,7 +43,7 @@ def defineCharacteristics(self):
self.name, self.i18n_name = self.trAlgorithm('Csv2Grid')
self.group, self.i18n_group = self.trAlgorithm('Points')
self.addParameter(ParameterFile(self.INPUT, self.tr('CSV Files'), optional=False))
self.addParameter(ParameterNumber(self.COLUMN, self.tr('Column'), 0, None, 0z))
self.addParameter(ParameterNumber(self.COLUMN, self.tr('Column'), 0, None, 0))
self.addOutput(OutputFile(self.OUTPUT, self.tr('Raster Output file'), 'asc'))

def processAlgorithm(self, feedback):
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/lidar/fusion/GridMetrics.py
Expand Up @@ -131,7 +131,7 @@ def processAlgorithm(self, feedback):
FusionUtils.createGroundList(ground)
commands.append(FusionUtils.tempGroundListFilepath())
commands.append(str(self.getParameterValue(self.HEIGHT)))
commands.append(str(self.getParameterValue(self.CELLSIZE)))
commands.append(str(self.getParameterValue(self.CELLSIZE)))
commands.append(self.getOutputValue(self.OUTPUT_CSV_ELEVATION))
files = self.getParameterValue(self.INPUT).split(';')
if len(files) == 1:
Expand Down

0 comments on commit 514e55b

Please sign in to comment.