Switch configurator to use async_run_hass_job (#114993)

This commit is contained in:
J. Nick Koston
2024-04-05 17:02:58 -10:00
committed by GitHub
parent 657bc969a3
commit 9c27e632fb

View File

@@ -250,7 +250,7 @@ class Configurator:
# field validation goes here?
if callback and (
job := self.hass.async_add_hass_job(
job := self.hass.async_run_hass_job(
HassJob(callback), call.data.get(ATTR_FIELDS, {})
)
):