From 5b7d74f9b4c64d8253a01acb276c9ecec81318d3 Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Thu, 5 Dec 2024 21:27:28 +0100 Subject: [PATCH] WIP --- homeassistant/components/nws/config_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.