mirror of
https://github.com/home-assistant/core.git
synced 2025-08-03 12:45:28 +02:00
Make state unknown if None returned
This commit is contained in:
@@ -145,7 +145,7 @@ class Entity(object):
|
||||
if force_refresh:
|
||||
self.update()
|
||||
|
||||
state = str(self.state)
|
||||
state = STATE_UNKNOWN if self.state is None else str(self.state)
|
||||
attr = self.state_attributes or {}
|
||||
|
||||
device_attr = self.device_state_attributes
|
||||
|
Reference in New Issue
Block a user