From 7d5c00b85112ca655e6d0b0905f5c6e156f055a5 Mon Sep 17 00:00:00 2001 From: Erik Montnemery Date: Wed, 31 Aug 2022 15:58:18 +0200 Subject: [PATCH] Fix comment in login_flow (#77600) --- homeassistant/components/auth/login_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/auth/login_flow.py b/homeassistant/components/auth/login_flow.py index df076a1b4c8..b907598fe5a 100644 --- a/homeassistant/components/auth/login_flow.py +++ b/homeassistant/components/auth/login_flow.py @@ -240,7 +240,7 @@ class LoginFlowBaseView(HomeAssistantView): class LoginFlowIndexView(LoginFlowBaseView): - """View to create a config flow.""" + """View to create a login flow.""" url = "/auth/login_flow" name = "api:auth:login_flow"