We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 105cade commit 63627b7Copy full SHA for 63627b7
plugwise_usb/nodes/node.py
@@ -504,7 +504,7 @@ async def update_node_details(
504
model_info = model_info.split(" ")
505
self._node_info.model = model_info[0]
506
# Handle + devices
507
- if "+" in model_info[1]:
+ if len(model_info) > 1 and "+" in model_info[1]:
508
self._node_info.model = model_info[0] = model_info[0:1]
509
model_info.pop(1)
510
0 commit comments