Skip to content

Commit

Permalink
Update heater_fan.py
Browse files Browse the repository at this point in the history
More trailing spaces
  • Loading branch information
chestwood96 authored May 20, 2023
1 parent f7af9e0 commit 0401a17
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions klippy/extras/heater_fan.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ def callback(self, eventtime):
speed = 0.
for heater in self.heaters:
current_temp, target_temp = heater.get_temp(eventtime)
if (target_temp or current_temp > self.heater_temp)
or (self.last_speed > 0
and (target_temp or current_temp
if (target_temp or current_temp > self.heater_temp)
or (self.last_speed > 0
and (target_temp or current_temp
> self.heater_temp - self.heater_temp_off_offset)):
speed = self.fan_speed
if speed != self.last_speed:
Expand Down

0 comments on commit 0401a17

Please sign in to comment.