Skip to content

Commit 676e39d

Browse files
committed
Test
1 parent c142a5d commit 676e39d

File tree

1 file changed

+8
-12
lines changed

1 file changed

+8
-12
lines changed

TheengsGateway/discovery.py

+8-12
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,14 @@ def publish_device_info(self, pub_device) -> None: # noqa: ANN001
164164
device["pl_off"] = "False"
165165
device["name"] = pub_device["model_id"] + "-" + k
166166
device["uniq_id"] = pub_device_uuid + "-" + k
167-
device["val_tpl"] = self.get_val_tpl(k)
167+
if k == "unlocked":
168+
device[
169+
"val_tpl"
170+
] = "{% if value_json.get('unlocked') is true -%}True{%- else -%}False{%- endif %}" # noqa: E501
171+
elif self.configuration["hass_discovery"]:
172+
device["val_tpl"] = "{{ value_json." + k + " | is_defined }}"
173+
else:
174+
device["val_tpl"] = "{{ value_json." + k + " }}"
168175

169176
config_topic = (
170177
discovery_topic
@@ -198,17 +205,6 @@ def publish_device_data(self, uuid: str, data: str) -> None:
198205
if self.configuration["presence"]:
199206
self.publish(data, self.configuration["presence_topic"])
200207

201-
def get_val_tpl(self, k: str) -> str:
202-
"""Get value_template."""
203-
if k == "unlocked":
204-
val_tpl = "{% if value_json.get('unlocked') is true -%}True{%- else -%}False{%- endif %}" # noqa: E501
205-
elif self.configuration["hass_discovery"]:
206-
val_tpl = "{{ value_json." + k + " | is_defined }}"
207-
else:
208-
val_tpl = "{{ value_json." + k + " }}"
209-
210-
return val_tpl
211-
212208
def prepare_hadevice(self, uuid: str, device: dict) -> dict:
213209
"""Prepare Home Assistant device configuration."""
214210
return {

0 commit comments

Comments
 (0)