From efd872babb2e303334b396e0f50bc64462d28af1 Mon Sep 17 00:00:00 2001 From: Joel Collins Date: Mon, 15 Jun 2020 16:19:07 +0100 Subject: [PATCH] Remove stage timeout --- openflexure_microscope/stage/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openflexure_microscope/stage/base.py b/openflexure_microscope/stage/base.py index b04909b2..092d401a 100644 --- a/openflexure_microscope/stage/base.py +++ b/openflexure_microscope/stage/base.py @@ -11,7 +11,7 @@ class BaseStage(metaclass=ABCMeta): """ def __init__(self): - self.lock = StrictLock(timeout=5) + self.lock = StrictLock(name="Stage") @abstractmethod def update_settings(self, config: dict):