diff options
author | Piotr Usewicz <piotr@layer22.com> | 2019-09-23 22:49:17 +0200 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2019-09-23 16:49:17 -0400 |
commit | 6b2b8f31eebd840b0a724d6fb918e5f00009fc8c (patch) | |
tree | f9ae8d90d4f15630d0293d6f338b40e7ebeb7cdd /klippy/extras/gcode_arcs.py | |
parent | 626cb71428f9160a697ebcad7b4e42682882d644 (diff) | |
download | kutter-6b2b8f31eebd840b0a724d6fb918e5f00009fc8c.tar.gz kutter-6b2b8f31eebd840b0a724d6fb918e5f00009fc8c.tar.xz kutter-6b2b8f31eebd840b0a724d6fb918e5f00009fc8c.zip |
gcode_arcs: Remove unused variables (#1988)
Signed-off-by: Piotr Usewicz <piotr@layer22.com>
Diffstat (limited to 'klippy/extras/gcode_arcs.py')
-rw-r--r-- | klippy/extras/gcode_arcs.py | 4 |
1 files changed, 0 insertions, 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) |