Moved lock submodule into 'common' and updated docs

This commit is contained in:
jtc42 2019-11-01 18:10:04 +00:00
parent 8ec9368988
commit 625b03fae3
10 changed files with 35 additions and 36 deletions

View file

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