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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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, {})
)
):