mirror of
https://github.com/home-assistant/core.git
synced 2025-07-27 15:17:35 +00:00
Fix for the case of zwave value used in several devices. (#6577)
This commit is contained in:
parent
a3a14f9ea4
commit
aeeb927e19
@ -434,7 +434,7 @@ def setup(hass, config):
|
|||||||
node=node, value=value, node_config=node_config, hass=hass)
|
node=node, value=value, node_config=node_config, hass=hass)
|
||||||
if not device:
|
if not device:
|
||||||
continue
|
continue
|
||||||
dict_id = value.value_id
|
dict_id = "{}.{}".format(component, value.value_id)
|
||||||
|
|
||||||
@asyncio.coroutine
|
@asyncio.coroutine
|
||||||
def discover_device(component, device, dict_id):
|
def discover_device(component, device, dict_id):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user