From a8ad1ae726227781507521d619e2fe8f89d7ffdd Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Mon, 2 Dec 2019 20:04:02 -0500 Subject: [PATCH] screws_tilt_adjust: Remove check for probe printer object The probe object may not have be instantiated when the screws_tilt_adjust object is instantiated. Just remove the check. Signed-off-by: Kevin O'Connor --- klippy/extras/screws_tilt_adjust.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/klippy/extras/screws_tilt_adjust.py b/klippy/extras/screws_tilt_adjust.py index 35a87699..519794ba 100644 --- a/klippy/extras/screws_tilt_adjust.py +++ b/klippy/extras/screws_tilt_adjust.py @@ -19,12 +19,6 @@ class ScrewsTiltAdjust: self.config = config self.printer = config.get_printer() self.screws = [] - # Verify that a probe exists - try: - self.printer.lookup_object("probe") - except: - raise self.gcode.error("Error: you must have a probe on " - "your config file.") # Read config for i in range(99): prefix = "screw%d" % (i + 1,)