mirror of
https://github.com/Andre0512/pyhOn.git
synced 2025-05-13 14:44:28 -04:00
Fix for fridge program names
This commit is contained in:
parent
ecbf438889
commit
eea79e28b9
4 changed files with 13 additions and 5 deletions
|
@ -22,6 +22,10 @@ class HonParameter:
|
|||
def value(self) -> str | float:
|
||||
return self._value if self._value is not None else "0"
|
||||
|
||||
@property
|
||||
def intern_value(self) -> str | float:
|
||||
return str(self._value) if self._value is not None else ""
|
||||
|
||||
@property
|
||||
def values(self) -> List[str]:
|
||||
return [str(self.value)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue