Reduced long-term lock usage

This commit is contained in:
Joel Collins 2020-11-06 10:27:22 +00:00
parent 368f86c4a5
commit 4c61f0c847
3 changed files with 41 additions and 46 deletions

View file

@ -56,8 +56,7 @@ class SangaStage(BaseStage):
@property
def position(self):
with self.lock(timeout=None):
return self.board.position
return self.board.position
@property
def backlash(self):