mirror of https://github.com/Desuuuu/klipper.git
bed_screws: No need to re-raise an EndstopError
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
1fd490ddf9
commit
b8c7eb40c5
|
@ -51,10 +51,7 @@ class BedScrews:
|
|||
for i in range(len(coord)):
|
||||
if coord[i] is not None:
|
||||
curpos[i] = coord[i]
|
||||
try:
|
||||
toolhead.move(curpos, speed)
|
||||
except homing.EndstopError as e:
|
||||
raise self.gcode.error(str(e))
|
||||
self.gcode.reset_last_position()
|
||||
def move_to_screw(self, state, screw):
|
||||
# Move up, over, and then down
|
||||
|
|
Loading…
Reference in New Issue