add doc strings to commands missing them

Change-Id: Ib0320cc4653ff695a7ee2bad3486eeec5309d3b1
This commit is contained in:
2021-12-03 16:49:48 +01:00
parent 483d4c9d6f
commit 6e73420d0f
3 changed files with 7 additions and 0 deletions

View File

@ -366,6 +366,7 @@ class Motor(PersistentMixin, HasIodev, Drivable):
@Command(FloatRange())
def set_zero(self, value):
"""adapt zero to make current position equal to given value"""
raw = self.read_value() - self.zero
self.write_zero(value - raw)