import signal as _signal
-from calibcant.calibrate import move_far_from_surface
+from calibcant.calibrate import move_far_from_surface as _move_far_from_surface
import pypiezo.base as _pypiezo_base
from . import LOG as _LOG
self._stop = True
def move_far_from_surface(self):
- _LOG.info('retract with the stepper motor')
- move_far_from_surface(
+ _LOG.info('retract with the stepper motor by {} m'.format(
+ self.unfolder.config['approach']['far']))
+ _move_far_from_surface(
stepper=self.unfolder.afm.stepper,
distance=self.unfolder.config['approach']['far'])