Add missing return type in zeroconf (#50847)

This commit is contained in:
J. Nick Koston 2021-05-18 22:49:10 -05:00 committed by GitHub
parent a58eae1bf1
commit e37256570c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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] = []