mirror of
https://github.com/Andre0512/pyhOn.git
synced 2024-01-19 02:50:44 +00:00
Update parameter.py to support missing parameter in some cases with HW5600
This commit is contained in:
parent
ec7355e341
commit
f00ee03c0d
|
@ -30,7 +30,7 @@ class HonParameter:
|
|||
class HonParameterFixed(HonParameter):
|
||||
def __init__(self, key, attributes):
|
||||
super().__init__(key, attributes)
|
||||
self._value = attributes["fixedValue"]
|
||||
self._value = attributes.get("fixedValue", None)
|
||||
|
||||
def __repr__(self):
|
||||
return f"{self.__class__} (<{self.key}> fixed)"
|
||||
|
|
Loading…
Reference in a new issue