From b9ae304ba0c76349b5b8fbd45742cb440d968e69 Mon Sep 17 00:00:00 2001 From: thekiwismarthome <134335563+thekiwismarthome@users.noreply.github.com> Date: Sat, 14 Feb 2026 07:22:53 +1300 Subject: [PATCH] Update __init__.py --- custom_components/shopping_list_manager/__init__.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/custom_components/shopping_list_manager/__init__.py b/custom_components/shopping_list_manager/__init__.py index 3ed43fe..7d0f108 100644 --- a/custom_components/shopping_list_manager/__init__.py +++ b/custom_components/shopping_list_manager/__init__.py @@ -40,10 +40,6 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: storage = ShoppingListStorage(hass, component_path, country) await storage.async_load() - # Initialize search engine after products are loaded - self._search_engine = ProductSearch(self._products) - _LOGGER.debug("Initialized product search engine") - # Initialize image handler image_handler = ImageHandler(hass, config_path)