Handle UPS disconnects in NUT (#35758)
This commit is contained in:
parent
affd11b372
commit
50105eed74
2 changed files with 6 additions and 2 deletions
|
@ -189,6 +189,8 @@ class NUTSensor(Entity):
|
|||
@property
|
||||
def state(self):
|
||||
"""Return entity state from ups."""
|
||||
if not self._data.status:
|
||||
return None
|
||||
if self._type == KEY_STATUS_DISPLAY:
|
||||
return _format_display_state(self._data.status)
|
||||
return self._data.status.get(self._type)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue