Bump aiosenseme to 0.6.1 to fix parser (#64520)
parent
8289da88cb
commit
2b413b86a3
|
@ -54,10 +54,11 @@ def async_trigger_discovery(
|
|||
) -> None:
|
||||
"""Trigger config flows for discovered devices."""
|
||||
for device in discovered_devices:
|
||||
hass.async_create_task(
|
||||
hass.config_entries.flow.async_init(
|
||||
DOMAIN,
|
||||
context={"source": config_entries.SOURCE_DISCOVERY},
|
||||
data={CONF_ID: device.uuid},
|
||||
if device.uuid:
|
||||
hass.async_create_task(
|
||||
hass.config_entries.flow.async_init(
|
||||
DOMAIN,
|
||||
context={"source": config_entries.SOURCE_DISCOVERY},
|
||||
data={CONF_ID: device.uuid},
|
||||
)
|
||||
)
|
||||
)
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
"config_flow": true,
|
||||
"documentation": "https://www.home-assistant.io/integrations/senseme",
|
||||
"requirements": [
|
||||
"aiosenseme==0.6.0"
|
||||
"aiosenseme==0.6.1"
|
||||
],
|
||||
"codeowners": [
|
||||
"@mikelawrence", "@bdraco"
|
||||
|
|
|
@ -251,7 +251,7 @@ aiorecollect==1.0.8
|
|||
aioridwell==2021.12.2
|
||||
|
||||
# homeassistant.components.senseme
|
||||
aiosenseme==0.6.0
|
||||
aiosenseme==0.6.1
|
||||
|
||||
# homeassistant.components.shelly
|
||||
aioshelly==1.0.7
|
||||
|
|
|
@ -186,7 +186,7 @@ aiorecollect==1.0.8
|
|||
aioridwell==2021.12.2
|
||||
|
||||
# homeassistant.components.senseme
|
||||
aiosenseme==0.6.0
|
||||
aiosenseme==0.6.1
|
||||
|
||||
# homeassistant.components.shelly
|
||||
aioshelly==1.0.7
|
||||
|
|
Loading…
Reference in New Issue