mirror of
https://github.com/home-assistant/core.git
synced 2025-07-20 19:57:07 +00:00
Check for missing ISY994 Z-Wave Properties (#86829)
* Check for missing Z-Wave Properties * Fix black from mobile
This commit is contained in:
parent
d0c7f42559
commit
e2edbc4259
@ -313,7 +313,11 @@ def _generate_device_info(node: Node) -> DeviceInfo:
|
||||
model += f" ({node.type})"
|
||||
|
||||
# Get extra information for Z-Wave Devices
|
||||
if node.protocol == PROTO_ZWAVE and node.zwave_props.mfr_id != "0":
|
||||
if (
|
||||
node.protocol == PROTO_ZWAVE
|
||||
and node.zwave_props
|
||||
and node.zwave_props.mfr_id != "0"
|
||||
):
|
||||
device_info[
|
||||
ATTR_MANUFACTURER
|
||||
] = f"Z-Wave MfrID:{int(node.zwave_props.mfr_id):#0{6}x}"
|
||||
|
Loading…
x
Reference in New Issue
Block a user