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 cc808cc1..ce9a3de8 100644
--- a/klippy/homing.py
+++ b/klippy/homing.py
@@ -164,8 +164,4 @@ class CommandError(Exception):
class EndstopError(CommandError):
pass
-def EndstopMoveError(pos, msg="Move out of range"):
- return EndstopError("%s: %.3f %.3f %.3f [%.3f]" % (
- msg, pos[0], pos[1], pos[2], pos[3]))
-
Coord = collections.namedtuple('Coord', ('x', 'y', 'z', 'e'))