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 63627b7 commit d56f2feCopy full SHA for d56f2fe
plugwise_usb/nodes/node.py
@@ -505,7 +505,8 @@ async def update_node_details(
505
self._node_info.model = model_info[0]
506
# Handle + devices
507
if len(model_info) > 1 and "+" in model_info[1]:
508
- self._node_info.model = model_info[0] = model_info[0:1]
+ self._node_info.model = model_info[0] + " " + model_info[1]
509
+ model_info[0] = self._node_info.model
510
model_info.pop(1)
511
512
self._node_info.version = hardware
0 commit comments