mirror of
https://github.com/Andre0512/pyhOn.git
synced 2026-06-20 17:21:18 +02:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a1347f7a46 | |||
| 8ef5bd9889 |
@@ -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
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ with open("README.md", "r", encoding="utf-8") as f:
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="pyhOn",
|
name="pyhOn",
|
||||||
version="0.16.0",
|
version="0.16.1",
|
||||||
author="Andre Basche",
|
author="Andre Basche",
|
||||||
description="Control hOn devices with python",
|
description="Control hOn devices with python",
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
|
|||||||
Reference in New Issue
Block a user