Fix Netgear LTE halting startup (#106598)

This commit is contained in:
Robert Hillis 2023-12-28 16:26:19 -05:00 committed by GitHub
parent 858e01ea42
commit f93b0a4831
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -170,7 +170,7 @@ async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool:
hass.data[DATA_HASS_CONFIG] = config
if lte_config := config.get(DOMAIN):
await hass.async_create_task(import_yaml(hass, lte_config))
hass.async_create_task(import_yaml(hass, lte_config))
return True