Moved to a LabThings dependency for server

This commit is contained in:
jtc42 2020-01-17 15:13:32 +00:00
parent a1223d8b28
commit 36334ed743
65 changed files with 546 additions and 2364 deletions

View file

@ -1,12 +1,12 @@
import numpy as np
from abc import ABCMeta, abstractmethod
from openflexure_microscope.common.labthings_core.lock import StrictLock
from labthings.core.lock import StrictLock
class BaseStage(metaclass=ABCMeta):
"""
Attributes:
lock (:py:class:`openflexure_microscope.common.lock.StrictLock`): Strict lock controlling thread
lock (:py:class:`labthings.lock.StrictLock`): Strict lock controlling thread
access to camera hardware
"""