mirror of
https://github.com/home-assistant/core.git
synced 2025-08-11 16:45:19 +02:00
Fix zha log message (#73626)
This commit is contained in:
@@ -672,7 +672,7 @@ class ZHAGateway:
|
|||||||
async def async_remove_zigpy_group(self, group_id: int) -> None:
|
async def async_remove_zigpy_group(self, group_id: int) -> None:
|
||||||
"""Remove a Zigbee group from Zigpy."""
|
"""Remove a Zigbee group from Zigpy."""
|
||||||
if not (group := self.groups.get(group_id)):
|
if not (group := self.groups.get(group_id)):
|
||||||
_LOGGER.debug("Group: %s:0x%04x could not be found", group.name, group_id)
|
_LOGGER.debug("Group: 0x%04x could not be found", group_id)
|
||||||
return
|
return
|
||||||
if group.members:
|
if group.members:
|
||||||
tasks = []
|
tasks = []
|
||||||
|
Reference in New Issue
Block a user