Skip to content

Commit

Permalink
follow up 4fb2898
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Aug 6, 2014
1 parent 4fb2898 commit 03d6425
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions python/plugins/processing/core/parameters.py
Expand Up @@ -367,8 +367,14 @@ def __init__(self, name='', description='', minValue=None, maxValue=None,
except:
self.default = float(default)
self.isInteger = False
self.min = int(minValue) if self.isInteger else float(minValue)
self.max = int(maxValue) if self.isInteger else float(maxValue)
if minValue is not None:
self.min = int(minValue) if self.isInteger else float(minValue)
else:
self.min = None
if maxValue is not None:
self.max = int(maxValue) if self.isInteger else float(maxValue)
else:
self.max = None
self.value = None

def setValue(self, n):
Expand Down

0 comments on commit 03d6425

Please sign in to comment.