Skip to content

Commit

Permalink
Add new groups according to updated LOE schedules format
Browse files Browse the repository at this point in the history
  • Loading branch information
Jurkash committed Dec 12, 2024
1 parent 8aa2ab0 commit fdd2922
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions custom_components/loe_outages/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
],
},
},
Expand Down
2 changes: 1 addition & 1 deletion custom_components/loe_outages/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

0 comments on commit fdd2922

Please sign in to comment.