forked from M-Labs/thermostat
List comprehension
This commit is contained in:
parent
980812de67
commit
f3e13cbb0b
|
@ -65,8 +65,8 @@ THERMOSTAT_PARAMETERS = [[
|
||||||
|
|
||||||
|
|
||||||
params = [
|
params = [
|
||||||
CommandsParameter.create(name='Thermostat Channel 0 Parameters', type='group', value=0, children=THERMOSTAT_PARAMETERS[0]),
|
CommandsParameter.create(name=f"Thermostat Channel {ch} Parameters", type='group', value=ch, children=THERMOSTAT_PARAMETERS[ch])
|
||||||
CommandsParameter.create(name='Thermostat Channel 1 Parameters', type='group', value=1, children=THERMOSTAT_PARAMETERS[1]),
|
for ch in range(2)
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue