From f4db74fe732bdda2dfa7d806b01e8e17a8354e0e Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Thu, 25 Feb 2021 11:08:04 -0600 Subject: [PATCH] Fix bond typing in config flow (#47055) --- homeassistant/components/bond/config_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/bond/config_flow.py b/homeassistant/components/bond/config_flow.py index f81e3a0be5c..f4e9babdff4 100644 --- a/homeassistant/components/bond/config_flow.py +++ b/homeassistant/components/bond/config_flow.py @@ -59,7 +59,7 @@ class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN): def __init__(self): """Initialize config flow.""" - self._discovered: dict = None + self._discovered: Optional[dict] = None async def _async_try_automatic_configure(self): """Try to auto configure the device.