mirror of
https://github.com/Andre0512/pyhOn.git
synced 2026-06-19 16:21:24 +02:00
Range.min is always skipped (#23)
This commit is contained in:
@@ -71,7 +71,7 @@ class HonParameterRange(HonParameter):
|
|||||||
def values(self) -> List[str]:
|
def values(self) -> List[str]:
|
||||||
result = []
|
result = []
|
||||||
i = self.min
|
i = self.min
|
||||||
while i < self.max:
|
while i <= self.max:
|
||||||
i += self.step
|
|
||||||
result.append(str(i))
|
result.append(str(i))
|
||||||
|
i += self.step
|
||||||
return result
|
return result
|
||||||
|
|||||||
Reference in New Issue
Block a user