From 52063537d74ead02d4f9340a438808bc5963b8f6 Mon Sep 17 00:00:00 2001 From: Erik Montnemery Date: Tue, 17 Oct 2023 16:53:52 +0200 Subject: [PATCH] Fix menu in homeassistant_hardware config flow (#102164) --- .../homeassistant_hardware/silabs_multiprotocol_addon.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/homeassistant_hardware/silabs_multiprotocol_addon.py b/homeassistant/components/homeassistant_hardware/silabs_multiprotocol_addon.py index 40cf1e18b0e..7884d3f5617 100644 --- a/homeassistant/components/homeassistant_hardware/silabs_multiprotocol_addon.py +++ b/homeassistant/components/homeassistant_hardware/silabs_multiprotocol_addon.py @@ -588,9 +588,9 @@ class OptionsFlowHandler(config_entries.OptionsFlow, ABC): serial_device = (await self._async_serial_port_settings()).device if addon_info.options.get(CONF_ADDON_DEVICE) != serial_device: return await self.async_step_addon_installed_other_device() - return await self.async_step_show_addon_menu() + return await self.async_step_addon_menu() - async def async_step_show_addon_menu( + async def async_step_addon_menu( self, user_input: dict[str, Any] | None = None ) -> FlowResult: """Show menu options for the addon."""