aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/homing.py
diff options
context:
space:
mode:
Diffstat (limited to 'klippy/homing.py')
-rw-r--r--klippy/homing.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/klippy/homing.py b/klippy/homing.py
index 6bd11304..97879730 100644
--- a/klippy/homing.py
+++ b/klippy/homing.py
@@ -123,10 +123,6 @@ def query_endstops(toolhead):
out.append((name, mcu_endstop.query_endstop_wait()))
return out
-def query_position(toolhead):
- steppers = toolhead.get_kinematics().get_steppers()
- return [(s.name.upper(), s.mcu_stepper.get_mcu_position()) for s in steppers]
-
class EndstopError(Exception):
pass