Skip to content

Commit

Permalink
Indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Feb 28, 2016
1 parent d32c41a commit 9aabc28
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/lidar/fusion/ImageCreate.py
Expand Up @@ -52,7 +52,7 @@ def defineCharacteristics(self):
self.INPUT, self.tr('Input LAS')))
self.addParameter(ParameterSelection(
self.COLOROPTION, self.tr('Method to assign colour'),
['Intensity', 'Elevation','Height']))
['Intensity', 'Elevation', 'Height']))
self.addParameter(ParameterFile(
self.GROUND, self.tr("Ground file (used with 'Height' method)"), 'dtm'))
self.addParameter(ParameterBoolean(
Expand Down
Expand Up @@ -41,7 +41,7 @@ class IntensityImage(FusionAlgorithm):
ALLRET = 'ALLRET'
LOWEST = 'LOWEST'
HIST = 'HIST'
PIXEL ='PIXEL'
PIXEL = 'PIXEL'
SWITCH = 'SWITCH'
OUTPUT = 'OUTPUT'

Expand Down
1 change: 1 addition & 0 deletions python/testing/__init__.py
Expand Up @@ -156,6 +156,7 @@ def assertFilesEqual(self, filepath_expected, filepath_result):


class _UnexpectedSuccess(Exception):

"""
The test was supposed to fail, but it didn't!
"""
Expand Down

0 comments on commit 9aabc28

Please sign in to comment.