Skip to content
Snippets Groups Projects
Unverified Commit 13a448eb authored by Erik Montnemery's avatar Erik Montnemery Committed by GitHub
Browse files

Remove explicit templating of velbus service data (#128904)

parent bad2e1f9
No related branches found
No related tags found
No related merge requests found
...@@ -122,7 +122,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: ...@@ -122,7 +122,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
await ( await (
hass.data[DOMAIN][call.data[CONF_INTERFACE]]["cntrl"] hass.data[DOMAIN][call.data[CONF_INTERFACE]]["cntrl"]
.get_module(call.data[CONF_ADDRESS]) .get_module(call.data[CONF_ADDRESS])
.set_memo_text(memo_text.async_render()) .set_memo_text(memo_text)
) )
hass.services.async_register( hass.services.async_register(
...@@ -135,7 +135,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: ...@@ -135,7 +135,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
vol.Required(CONF_ADDRESS): vol.All( vol.Required(CONF_ADDRESS): vol.All(
vol.Coerce(int), vol.Range(min=0, max=255) vol.Coerce(int), vol.Range(min=0, max=255)
), ),
vol.Optional(CONF_MEMO_TEXT, default=""): cv.template, vol.Optional(CONF_MEMO_TEXT, default=""): cv.string,
} }
), ),
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment