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):