From 6b2b8f31eebd840b0a724d6fb918e5f00009fc8c Mon Sep 17 00:00:00 2001 From: Piotr Usewicz Date: Mon, 23 Sep 2019 22:49:17 +0200 Subject: [PATCH] gcode_arcs: Remove unused variables (#1988) Signed-off-by: Piotr Usewicz --- klippy/extras/gcode_arcs.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/klippy/extras/gcode_arcs.py b/klippy/extras/gcode_arcs.py index e1ebeb12..1ed71b98 100644 --- a/klippy/extras/gcode_arcs.py +++ b/klippy/extras/gcode_arcs.py @@ -29,12 +29,8 @@ class ArcSupport: cmd_G3_help = "Clockwise rotaion move" def cmd_G2(self, params): - # set vars currentPos = self.printer.lookup_object('toolhead').get_position() - asStartX = currentPos[0] - asStartY = currentPos[1] - asStartZ = currentPos[2] asX = params.get("X", None) asY = params.get("Y", None)