diff options
author | Master92 <Nils.Friedchen@googlemail.com> | 2019-09-16 13:14:39 +0200 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2019-09-17 11:52:03 -0400 |
commit | 6333dc206938f88785fe1a0813369ce41476d397 (patch) | |
tree | 4d93cf522f6788c8bbfc1a736bb56c66883f5320 | |
parent | 62501573971a4a9803ff9b5b56a0459408e56d1e (diff) | |
download | kutter-6333dc206938f88785fe1a0813369ce41476d397.tar.gz kutter-6333dc206938f88785fe1a0813369ce41476d397.tar.xz kutter-6333dc206938f88785fe1a0813369ce41476d397.zip |
controller_fan: Use _ to declare discarded return value
Signed-off-by: Nils Friedchen <Nils.Friedchen@googlemail.com>
-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: |