From e37256570c1ed9b8579a665363a231544c924411 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Tue, 18 May 2021 22:49:10 -0500 Subject: [PATCH] Add missing return type in zeroconf (#50847) --- homeassistant/components/zeroconf/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/zeroconf/__init__.py b/homeassistant/components/zeroconf/__init__.py index ceaba3f02a1..192ba5ac97e 100644 --- a/homeassistant/components/zeroconf/__init__.py +++ b/homeassistant/components/zeroconf/__init__.py @@ -279,7 +279,7 @@ async def _async_register_hass_zc_service( class FlowDispatcher: """Dispatch discovery flows.""" - def __init__(self, hass: HomeAssistant): + def __init__(self, hass: HomeAssistant) -> None: """Init the discovery dispatcher.""" self.hass = hass self.pending_flows: list[ZeroconfFlow] = []