mirror of https://github.com/Andre0512/hon.git
Fix unkown for 0 in number entity
This commit is contained in:
parent
36aed2e6ea
commit
a746584833
|
@ -300,7 +300,7 @@ class HonConfigNumberEntity(HonEntity, NumberEntity):
|
|||
|
||||
@property
|
||||
def native_value(self) -> float | None:
|
||||
if value := self._device.settings[self.entity_description.key].value:
|
||||
if (value := self._device.settings[self.entity_description.key].value) != "":
|
||||
return float(value)
|
||||
return None
|
||||
|
||||
|
|
Loading…
Reference in New Issue