Upgrade netgear_lte third-party library to v0.0.15 (#90324)

* Upgrade netgear_lte third-party library to 0.0.15

* Create explicit tasks for asyncio.wait()
This commit is contained in:
Anders Melchiorsen 2023-03-27 01:22:20 +02:00 committed by GitHub
parent 65e46e3261
commit 75e28826e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 3 deletions

View file

@ -221,7 +221,10 @@ async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool:
netgear_lte_config = config[DOMAIN]
# Set up each modem
tasks = [_setup_lte(hass, lte_conf) for lte_conf in netgear_lte_config]
tasks = [
hass.async_create_task(_setup_lte(hass, lte_conf))
for lte_conf in netgear_lte_config
]
await asyncio.wait(tasks)
# Load platforms for each modem

View file

@ -5,5 +5,5 @@
"documentation": "https://www.home-assistant.io/integrations/netgear_lte",
"iot_class": "local_polling",
"loggers": ["eternalegypt"],
"requirements": ["eternalegypt==0.0.12"]
"requirements": ["eternalegypt==0.0.15"]
}

View file

@ -679,7 +679,7 @@ epsonprinter==0.0.9
esphome-dashboard-api==1.2.3
# homeassistant.components.netgear_lte
eternalegypt==0.0.12
eternalegypt==0.0.15
# homeassistant.components.eufylife_ble
eufylife_ble_client==0.1.7