Skip to content

Commit

Permalink
Remove optional flag on a boolean parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
DelazJ authored Jun 18, 2021
1 parent cbe2678 commit 7505bc7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions python/plugins/processing/algs/gdal/rasterize.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,7 @@ def initAlgorithm(self, config=None):
optional=True))
self.addParameter(QgsProcessingParameterBoolean(self.USE_Z,
self.tr('Burn value extracted from the "Z" values of the feature'),
defaultValue=False,
optional=True))
defaultValue=False))
self.addParameter(QgsProcessingParameterEnum(self.UNITS,
self.tr('Output raster size units'),
self.units))
Expand Down

0 comments on commit 7505bc7

Please sign in to comment.