diff --git a/homeassistant/components/nws/config_flow.py b/homeassistant/components/nws/config_flow.py index 22a4adf3d857ae..d89421f7ca812a 100644 --- a/homeassistant/components/nws/config_flow.py +++ b/homeassistant/components/nws/config_flow.py @@ -22,7 +22,7 @@ _LOGGER = logging.getLogger(__name__) -async def validate_input(hass: HomeAssistant, data: dict[str, Any]) -> dict[str, str]: +async def validate_input(hass: HomeAssistant, data: dict[str, Any]) -> {"title": str}: """Validate the user input allows us to connect. Data has the keys from DATA_SCHEMA with values provided by the user.