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:
parent
65e46e3261
commit
75e28826e0
3 changed files with 6 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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"]
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue