Skip to content

Commit

Permalink
Merge pull request #18 from Jurkash/develop
Browse files Browse the repository at this point in the history
Update to support the new LOE schedule format
  • Loading branch information
Jurkash authored Dec 12, 2024
2 parents 98a0893 + fdd2922 commit 81caa72
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 81caa72

Please sign in to comment.