diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-04-24 22:02:36 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-05-05 11:08:11 -0400 |
commit | 57ca91a87594e4332925817111a72a056e765b1c (patch) | |
tree | a960a3537c6d7ca51b9c66f0dd869419b8c10a5f | |
parent | d4adeda76bc3cda104c98857442a8ec56073b0f7 (diff) | |
download | kutter-57ca91a87594e4332925817111a72a056e765b1c.tar.gz kutter-57ca91a87594e4332925817111a72a056e765b1c.tar.xz kutter-57ca91a87594e4332925817111a72a056e765b1c.zip |
quad_gantry_level: Use new GCodeCommand wrappers
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | klippy/extras/quad_gantry_level.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/klippy/extras/quad_gantry_level.py b/klippy/extras/quad_gantry_level.py index 31f6c8a4..300e2ce5 100644 --- a/klippy/extras/quad_gantry_level.py +++ b/klippy/extras/quad_gantry_level.py @@ -37,9 +37,9 @@ class QuadGantryLevel: desc=self.cmd_QUAD_GANTRY_LEVEL_help) cmd_QUAD_GANTRY_LEVEL_help = ( "Conform a moving, twistable gantry to the shape of a stationary bed") - def cmd_QUAD_GANTRY_LEVEL(self, params): - self.retry_helper.start(params) - self.probe_helper.start_probe(params) + def cmd_QUAD_GANTRY_LEVEL(self, gcmd): + self.retry_helper.start(gcmd) + self.probe_helper.start_probe(gcmd) def probe_finalize(self, offsets, positions): # Mirror our perspective so the adjustments make sense # from the perspective of the gantry |