From fdd292262331afee5865dbf17978a177684518d5 Mon Sep 17 00:00:00 2001 From: Jurkash Date: Fri, 13 Dec 2024 00:44:54 +0200 Subject: [PATCH] Add new groups according to updated LOE schedules format --- custom_components/loe_outages/config_flow.py | 4 ++-- custom_components/loe_outages/manifest.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/custom_components/loe_outages/config_flow.py b/custom_components/loe_outages/config_flow.py index 63c839e..ea113b3 100644 --- a/custom_components/loe_outages/config_flow.py +++ b/custom_components/loe_outages/config_flow.py @@ -41,8 +41,8 @@ def build_schema(config_entry: ConfigEntry) -> vol.Schema: "select": { "options": [ {"value": f"{i}.{j}", "label": f"Group {i}.{j}"} - for i in range(1, 4) - for j in range(1, 3) + for i in range(1, 7) # 1-6 + for j in range(1, 3) # 1-2 ], }, }, diff --git a/custom_components/loe_outages/manifest.json b/custom_components/loe_outages/manifest.json index 20633a4..dc598b8 100644 --- a/custom_components/loe_outages/manifest.json +++ b/custom_components/loe_outages/manifest.json @@ -7,5 +7,5 @@ "iot_class": "calculated", "issue_tracker": "https://github.com/jurkash/ha-loe-outages", "requirements": [], - "version": "0.1.0" + "version": "0.2.0" }