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 ce7ea30 commit 2b9c412Copy full SHA for 2b9c412
plugwise_usb/network/__init__.py
@@ -423,7 +423,9 @@ async def _discover_node(
423
_LOGGER.debug("Starting the discovery of node %s with unknown NodeType", mac)
424
node_info, node_ping = await self._controller.get_node_details(mac, ping_first)
425
if node_info is None:
426
- _LOGGER.warning("Node %s with unknown NodeType not responding, is it offline?", mac)
+ _LOGGER.warning(
427
+ "Node %s with unknown NodeType not responding, is it offline?", mac
428
+ )
429
self._registry_stragglers.append(mac)
430
return False
431
await self._create_node_object(mac, node_info.node_type)
0 commit comments