From 91615964c528df995ceec90a2d264639ef56426a Mon Sep 17 00:00:00 2001 From: thekiwismarthome <134335563+thekiwismarthome@users.noreply.github.com> Date: Sat, 14 Feb 2026 07:05:08 +1300 Subject: [PATCH] Update storage.py --- custom_components/shopping_list_manager/storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/shopping_list_manager/storage.py b/custom_components/shopping_list_manager/storage.py index efe2591..206d3a7 100644 --- a/custom_components/shopping_list_manager/storage.py +++ b/custom_components/shopping_list_manager/storage.py @@ -90,7 +90,7 @@ class ShoppingListStorage: _LOGGER.debug("Loaded %d categories", len(self._categories)) else: # Initialize with default categories from JSON file - default_categories = load_categories(self._component_path, self._country) # Use self._country + default_categories = await load_categories(self._component_path, self._country) # Use self._country self._categories = [Category(**cat) for cat in default_categories] await self._save_categories() _LOGGER.info(