diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-06-22 15:33:12 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-06-22 15:33:12 -0400 |
commit | d9a32f75fa953ca50f30a3d996e4dbd5b2154b87 (patch) | |
tree | 96f0ed5fb7ac7521a1288cf88158c888ec2bb74c /klippy/extras/probe.py | |
parent | 3e88ffabf1b3c54baa48aca058b98354d4d959bc (diff) | |
download | kutter-d9a32f75fa953ca50f30a3d996e4dbd5b2154b87.tar.gz kutter-d9a32f75fa953ca50f30a3d996e4dbd5b2154b87.tar.xz kutter-d9a32f75fa953ca50f30a3d996e4dbd5b2154b87.zip |
probe: Rename get_position() callback to get_probed_position()
The different uses of get_position() can be confusing, so choose a
different name for the ProbePointsHelper callback.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras/probe.py')
-rw-r--r-- | klippy/extras/probe.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/probe.py b/klippy/extras/probe.py index ca5916ba..f89770a6 100644 --- a/klippy/extras/probe.py +++ b/klippy/extras/probe.py @@ -207,7 +207,7 @@ class ProbePointsHelper: def cmd_NEXT(self, params): # Record current position self.toolhead.wait_moves() - self.results.append(self.callback.get_position()) + self.results.append(self.callback.get_probed_position()) # Lift toolhead curpos = self.toolhead.get_position() curpos[2] = self.horizontal_move_z |