diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2025-05-13 11:14:30 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2025-05-13 11:14:30 -0400 |
commit | ed36041b67e8bbbacae0710af8c4a5e4ffc030fa (patch) | |
tree | 49bcd3f696ec52a481568c0564788364bbfe160e | |
parent | 1af219fad6c2abda1eadbd4c48ad541110100f4c (diff) | |
download | kutter-ed36041b67e8bbbacae0710af8c4a5e4ffc030fa.tar.gz kutter-ed36041b67e8bbbacae0710af8c4a5e4ffc030fa.tar.xz kutter-ed36041b67e8bbbacae0710af8c4a5e4ffc030fa.zip |
resonance_tester: Fix typo
Fix typo introduced in 307c03e48.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | klippy/extras/resonance_tester.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/resonance_tester.py b/klippy/extras/resonance_tester.py index 9534f88e..a4d3876f 100644 --- a/klippy/extras/resonance_tester.py +++ b/klippy/extras/resonance_tester.py @@ -128,7 +128,7 @@ class ResonanceTestExecutor: reactor = self.printer.get_reactor() toolhead = self.printer.lookup_object('toolhead') tpos = toolhead.get_position() - X, Y = thpos[:2] + X, Y = tpos[:2] # Override maximum acceleration and acceleration to # deceleration based on the maximum test frequency systime = reactor.monotonic() |