Remove unused 'as' clause

atse 2023-07-05 13:00:56 +08:00
parent 69566cc3fc
commit 940e83dd17
1 changed files with 2 additions and 2 deletions

View File

@ -101,10 +101,10 @@ def fan_update(fan_settings):
logging.debug(fan_settings)
if fan_settings is None:
return
with QSignalBlocker(ui.fan_power_slider) as _:
with QSignalBlocker(ui.fan_power_slider):
ui.fan_power_slider.setValue(fan_settings["fan_pwm"])
ui.fan_power_slider.setEnabled(not fan_settings["auto_mode"])
with QSignalBlocker(ui.fan_auto_box) as _:
with QSignalBlocker(ui.fan_auto_box):
ui.fan_auto_box.setChecked(fan_settings["auto_mode"])