Skip to content

Commit f838001

Browse files
committed
Indentation
1 parent b11769f commit f838001

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/plugins/processing/algs/qgis/CreateConstantRaster.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@
4242

4343

4444
class CreateConstantRaster(QgisAlgorithm):
45-
4645
EXTENT = 'EXTENT'
4746
TARGET_CRS = 'TARGET_CRS'
4847
PIXEL_SIZE = 'PIXEL_SIZE'
@@ -100,7 +99,8 @@ def processAlgorithm(self, parameters, context, feedback):
10099
raise QgsProcessingException(self.tr("Could not create raster output: {}").format(outputFile))
101100
if not provider.isValid():
102101
raise QgsProcessingException(self.tr("Could not create raster output {}: {}").format(outputFile,
103-
provider.error().message(QgsErrorMessage.Text)))
102+
provider.error().message(
103+
QgsErrorMessage.Text)))
104104

105105
provider.setNoDataValue(1, -9999)
106106

0 commit comments

Comments
 (0)