aboutsummaryrefslogtreecommitdiffstats
path: root/klippy
diff options
context:
space:
mode:
authorMaster92 <Nils.Friedchen@googlemail.com>2019-09-16 13:14:39 +0200
committerKevinOConnor <kevin@koconnor.net>2019-09-17 11:52:03 -0400
commit6333dc206938f88785fe1a0813369ce41476d397 (patch)
tree4d93cf522f6788c8bbfc1a736bb56c66883f5320 /klippy
parent62501573971a4a9803ff9b5b56a0459408e56d1e (diff)
downloadkutter-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>
Diffstat (limited to 'klippy')
-rw-r--r--klippy/extras/controller_fan.py2
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: