From 5378f79ac4874d724092dac08f32d304751fcf70 Mon Sep 17 00:00:00 2001 From: thekiwismarthome <134335563+thekiwismarthome@users.noreply.github.com> Date: Fri, 13 Feb 2026 21:53:39 +1300 Subject: [PATCH] Update config_flow.py --- custom_components/shopping_list_manager/config_flow.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/shopping_list_manager/config_flow.py b/custom_components/shopping_list_manager/config_flow.py index 4ce713d..3d21b57 100644 --- a/custom_components/shopping_list_manager/config_flow.py +++ b/custom_components/shopping_list_manager/config_flow.py @@ -21,7 +21,7 @@ class ShoppingListManagerConfigFlow(config_entries.ConfigFlow, domain=DOMAIN): # Create entry with default country return self.async_create_entry( title="Shopping List Manager", - data={"country": "NZ"}, # Default to NZ + data={"country": "NZ"}, options={ "country": "NZ", "enable_price_tracking": True, @@ -30,7 +30,7 @@ class ShoppingListManagerConfigFlow(config_entries.ConfigFlow, domain=DOMAIN): } ) - # Show simple setup form (no country selection here) + # Show simple setup form return self.async_show_form( step_id="user", description_placeholders={