forked from home-assistant/core
Add missing return type in zeroconf (#50847)
This commit is contained in:
@@ -279,7 +279,7 @@ async def _async_register_hass_zc_service(
|
|||||||
class FlowDispatcher:
|
class FlowDispatcher:
|
||||||
"""Dispatch discovery flows."""
|
"""Dispatch discovery flows."""
|
||||||
|
|
||||||
def __init__(self, hass: HomeAssistant):
|
def __init__(self, hass: HomeAssistant) -> None:
|
||||||
"""Init the discovery dispatcher."""
|
"""Init the discovery dispatcher."""
|
||||||
self.hass = hass
|
self.hass = hass
|
||||||
self.pending_flows: list[ZeroconfFlow] = []
|
self.pending_flows: list[ZeroconfFlow] = []
|
||||||
|
Reference in New Issue
Block a user