diff options
Diffstat (limited to 'klippy/extras/controller_fan.py')
-rw-r--r-- | klippy/extras/controller_fan.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/controller_fan.py b/klippy/extras/controller_fan.py index 3c6da5da..0a1adf7d 100644 --- a/klippy/extras/controller_fan.py +++ b/klippy/extras/controller_fan.py @@ -36,7 +36,7 @@ class ControllerFan: for stepper in self.steppers: active |= stepper.is_motor_enabled() for heater in self.heaters: - currentTemp, targetTemp = heater.get_temp(eventtime) + _, targetTemp = heater.get_temp(eventtime) if targetTemp: active = True if active: |