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" }