mirror of
https://github.com/home-assistant/core.git
synced 2025-08-02 12:15:08 +02:00
Fix ESPHome async_step_reconfigure signature (#143620)
This commit is contained in:
@@ -177,7 +177,7 @@ class EsphomeFlowHandler(ConfigFlow, domain=DOMAIN):
|
|||||||
)
|
)
|
||||||
|
|
||||||
async def async_step_reconfigure(
|
async def async_step_reconfigure(
|
||||||
self, entry_data: Mapping[str, Any]
|
self, user_input: dict[str, Any] | None = None
|
||||||
) -> ConfigFlowResult:
|
) -> ConfigFlowResult:
|
||||||
"""Handle a flow initialized by a reconfig request."""
|
"""Handle a flow initialized by a reconfig request."""
|
||||||
self._reconfig_entry = self._get_reconfigure_entry()
|
self._reconfig_entry = self._get_reconfigure_entry()
|
||||||
|
Reference in New Issue
Block a user