Skip to content

Commit a6152e0

Browse files
authored
Merge pull request #550 from plugwise/fix-script
Fix typo in manual_fixtures.py
2 parents 9ac599a + 5846b73 commit a6152e0

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## Ongoing
4+
5+
- Fix typo in manual_fixtures.py script
6+
37
## v0.37.3
48

59
- Fix for [plugwise-beta #620](https://github.com/plugwise/plugwise-beta/issues/620)

fixtures/m_adam_cooling/all_data.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,7 @@
6666
"model": "ThermoTouch",
6767
"name": "Anna",
6868
"preset_modes": ["no_frost", "asleep", "vacation", "home", "away"],
69-
"select_schedule": "Weekschema",
70-
"selected_schedule": "None",
69+
"select_schedule": "None",
7170
"sensors": {
7271
"setpoint": 23.5,
7372
"temperature": 25.8

fixtures/m_adam_heating/all_data.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,7 @@
7171
"model": "ThermoTouch",
7272
"name": "Anna",
7373
"preset_modes": ["no_frost", "asleep", "vacation", "home", "away"],
74-
"select_schedule": "Weekschema",
75-
"selected_schedule": "None",
74+
"select_schedule": "None",
7675
"sensors": {
7776
"setpoint": 20.0,
7877
"temperature": 19.1

scripts/manual_fixtures.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def json_writer(manual_name: str, all_data: dict) -> None:
6262
m_adam_cooling["devices"]["ad4838d7d35c4d6ea796ee12ae5aedf8"]["available"] = True
6363

6464
m_adam_cooling["devices"]["ad4838d7d35c4d6ea796ee12ae5aedf8"][
65-
"selected_schedule"
65+
"select_schedule"
6666
] = "None"
6767
m_adam_cooling["devices"]["ad4838d7d35c4d6ea796ee12ae5aedf8"][
6868
"control_state"

0 commit comments

Comments
 (0)