Fix ESPHome async_step_reconfigure signature (#143620)

This commit is contained in:
J. Nick Koston 2025-04-24 11:30:27 -10:00 committed by GitHub
parent fab70a80bb
commit a74fe60b91
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -177,7 +177,7 @@ class EsphomeFlowHandler(ConfigFlow, domain=DOMAIN):
)
async def async_step_reconfigure(
self, entry_data: Mapping[str, Any]
self, user_input: dict[str, Any] | None = None
) -> ConfigFlowResult:
"""Handle a flow initialized by a reconfig request."""
self._reconfig_entry = self._get_reconfigure_entry()