forked from M-Labs/thermostat
send_command: Remove unnecessary redirection
The child at inner_param's childpath to the root parameter... is just inner_param itself.
This commit is contained in:
parent
c77f131afd
commit
3ca8b725cd
@ -279,9 +279,9 @@ class MainWindow(QtWidgets.QMainWindow):
|
|||||||
set_param_args = (*thermostat_param[:2], "off")
|
set_param_args = (*thermostat_param[:2], "off")
|
||||||
else:
|
else:
|
||||||
set_param_args = (*thermostat_param, new_value)
|
set_param_args = (*thermostat_param, new_value)
|
||||||
param.child(*param.childPath(inner_param)).setOpts(lock=True)
|
inner_param.setOpts(lock=True)
|
||||||
await self.client.set_param(*set_param_args)
|
await self.client.set_param(*set_param_args)
|
||||||
param.child(*param.childPath(inner_param)).setOpts(lock=False)
|
inner_param.setOpts(lock=False)
|
||||||
|
|
||||||
if "pid_autotune" in inner_param.opts:
|
if "pid_autotune" in inner_param.opts:
|
||||||
auto_tuner_param = inner_param.opts["pid_autotune"][0]
|
auto_tuner_param = inner_param.opts["pid_autotune"][0]
|
||||||
|
Loading…
Reference in New Issue
Block a user