Correct stale docstring on mqtt config flow method (#116848)

This commit is contained in:
Jan Bouwhuis
2024-05-05 14:06:13 +02:00
committed by GitHub
parent 7d5aa03bf0
commit 9fd31f6c92

View File

@@ -218,8 +218,7 @@ class FlowHandler(ConfigFlow, domain=DOMAIN):
async def async_step_reauth( async def async_step_reauth(
self, entry_data: Mapping[str, Any] self, entry_data: Mapping[str, Any]
) -> ConfigFlowResult: ) -> ConfigFlowResult:
"""Handle re-authentication with Aladdin Connect.""" """Handle re-authentication with MQTT broker."""
self.entry = self.hass.config_entries.async_get_entry(self.context["entry_id"]) self.entry = self.hass.config_entries.async_get_entry(self.context["entry_id"])
return await self.async_step_reauth_confirm() return await self.async_step_reauth_confirm()