diff --git a/homeassistant/components/devolo_home_network/config_flow.py b/homeassistant/components/devolo_home_network/config_flow.py index 765d16177d93..0c6aeabf648a 100644 --- a/homeassistant/components/devolo_home_network/config_flow.py +++ b/homeassistant/components/devolo_home_network/config_flow.py @@ -76,7 +76,7 @@ class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN): async def async_step_zeroconf( self, discovery_info: zeroconf.ZeroconfServiceInfo ) -> FlowResult: - """Handle zerooconf discovery.""" + """Handle zeroconf discovery.""" if discovery_info.properties["MT"] in ["2600", "2601"]: return self.async_abort(reason="home_control") diff --git a/tests/components/devolo_home_network/test_config_flow.py b/tests/components/devolo_home_network/test_config_flow.py index 7d115a26b15d..7cd1ba5222c6 100644 --- a/tests/components/devolo_home_network/test_config_flow.py +++ b/tests/components/devolo_home_network/test_config_flow.py @@ -174,7 +174,7 @@ async def test_abort_if_configued(hass: HomeAssistant): @pytest.mark.usefixtures("mock_device") @pytest.mark.usefixtures("mock_zeroconf") async def test_validate_input(hass: HomeAssistant): - """Test input validaton.""" + """Test input validation.""" info = await config_flow.validate_input(hass, {CONF_IP_ADDRESS: IP}) assert SERIAL_NUMBER in info assert TITLE in info