mirror of https://github.com/Desuuuu/klipper.git
tuning_tower: Fix typo causing tuning tower to break when homing
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
10270dc7ef
commit
72161d0405
|
@ -38,7 +38,7 @@ class TuningTower:
|
||||||
% (self.start, self.factor))
|
% (self.start, self.factor))
|
||||||
def get_position(self):
|
def get_position(self):
|
||||||
pos = self.normal_transform.get_position()
|
pos = self.normal_transform.get_position()
|
||||||
self.last_postition = list(pos)
|
self.last_position = list(pos)
|
||||||
return pos
|
return pos
|
||||||
def calc_value(self, z):
|
def calc_value(self, z):
|
||||||
if self.band:
|
if self.band:
|
||||||
|
|
Loading…
Reference in New Issue