This commit is contained in:
joBr99
2023-01-22 14:19:18 +01:00
parent 6ae0782399
commit 322f07b133
2 changed files with 15 additions and 6 deletions

View File

@@ -24,6 +24,7 @@ class Entity(object):
self.condTemplate = entity_input_config.get("state_template")
self.assumedState = entity_input_config.get("assumed_state", False)
self.stype = entity_input_config.get("type")
self.value = entity_input_config.get("value")
self.data = entity_input_config.get("data", {})
self.entity_input_config = entity_input_config
@@ -243,3 +244,4 @@ class LuiBackendConfig(object):
def get_card_by_uuid(self, uuid):
return self._config_card_table.get(uuid)