Skip to content

Commit 746526a

Browse files
committed
Revert 2 more !r removals
1 parent 823c6e4 commit 746526a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugwise_usb/network/registry.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,12 +282,12 @@ async def unregister_node(self, mac: str) -> None:
282282
request = NodeRemoveRequest(self._send_to_controller, self._mac_nc, mac)
283283
if (response := await request.send()) is None:
284284
raise NodeError(
285-
f"The Zigbee network coordinator '{self._mac_nc}'"
285+
f"The Zigbee network coordinator '{self._mac_nc!r}'"
286286
+ f" did not respond to unregister node '{mac}'"
287287
)
288288
if response.status.value != 1:
289289
raise NodeError(
290-
f"The Zigbee network coordinator '{self._mac_nc}'"
290+
f"The Zigbee network coordinator '{self._mac_nc!r}'"
291291
+ f" failed to unregister node '{mac}'"
292292
)
293293
if (address := self.network_address(mac)) is not None:

0 commit comments

Comments
 (0)