Fix some errors

This commit is contained in:
Andre Basche 2023-05-08 00:03:29 +02:00
parent 7bd3aac7c5
commit 8e16b4a215
4 changed files with 11 additions and 5 deletions

View file

@ -32,6 +32,8 @@ class HonParameterRange(HonParameter):
@property
def step(self) -> float:
if not self._step:
return 1
return self._step
@property