Skip to content

Commit 9aabc28

Browse files
committed
Indentation
1 parent d32c41a commit 9aabc28

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

python/plugins/processing/algs/lidar/fusion/ImageCreate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def defineCharacteristics(self):
5252
self.INPUT, self.tr('Input LAS')))
5353
self.addParameter(ParameterSelection(
5454
self.COLOROPTION, self.tr('Method to assign colour'),
55-
['Intensity', 'Elevation','Height']))
55+
['Intensity', 'Elevation', 'Height']))
5656
self.addParameter(ParameterFile(
5757
self.GROUND, self.tr("Ground file (used with 'Height' method)"), 'dtm'))
5858
self.addParameter(ParameterBoolean(

python/plugins/processing/algs/lidar/fusion/IntensityImage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class IntensityImage(FusionAlgorithm):
4141
ALLRET = 'ALLRET'
4242
LOWEST = 'LOWEST'
4343
HIST = 'HIST'
44-
PIXEL ='PIXEL'
44+
PIXEL = 'PIXEL'
4545
SWITCH = 'SWITCH'
4646
OUTPUT = 'OUTPUT'
4747

python/testing/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@ def assertFilesEqual(self, filepath_expected, filepath_result):
156156

157157

158158
class _UnexpectedSuccess(Exception):
159+
159160
"""
160161
The test was supposed to fail, but it didn't!
161162
"""

0 commit comments

Comments
 (0)