From 7a61fd5fe417d4899eafb6ca588632148f625746 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Tue, 6 Jun 2023 12:21:57 -0500 Subject: [PATCH] Update homeassistant/components/network/__init__.py --- homeassistant/components/network/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/network/__init__.py b/homeassistant/components/network/__init__.py index 0b9ec9caad..8d9e52b9a8 100644 --- a/homeassistant/components/network/__init__.py +++ b/homeassistant/components/network/__init__.py @@ -122,7 +122,7 @@ async def async_get_ipv4_broadcast_addresses(hass: HomeAssistant) -> set[IPv4Add async def async_get_announced_addresses(hass: HomeAssistant) -> list[str]: """Return a list of IP addresses to announce via zeroconf. - If first_ip is not None, it will be the first address in the list. + The default ip address is always returned first if available. """ adapters = await async_get_adapters(hass) addresses: list[str] = []