mirror of
https://github.com/Andre0512/pyhOn.git
synced 2026-06-20 16:21:15 +02:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a1347f7a46 | |||
| 8ef5bd9889 |
@@ -71,7 +71,7 @@ class HonParameterRange(HonParameter):
|
||||
def values(self) -> List[str]:
|
||||
result = []
|
||||
i = self.min
|
||||
while i < self.max:
|
||||
i += self.step
|
||||
while i <= self.max:
|
||||
result.append(str(i))
|
||||
i += self.step
|
||||
return result
|
||||
|
||||
Reference in New Issue
Block a user