Compare commits

...

2 Commits

Author SHA1 Message Date
Andre Basche a1347f7a46
Bump version 2024-03-18 01:08:52 +01:00
Vadym 8ef5bd9889
Range.min is always skipped (#23) 2024-03-18 01:06:46 +01:00
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -7,7 +7,7 @@ with open("README.md", "r", encoding="utf-8") as f:
setup(
name="pyhOn",
version="0.16.0",
version="0.16.1",
author="Andre Basche",
description="Control hOn devices with python",
long_description=long_description,