We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38d0325 commit a74fd0dCopy full SHA for a74fd0d
microscope/filterwheels/aurox.py
@@ -38,14 +38,16 @@
38
import microscope.devices
39
from typing import Mapping
40
from enum import IntEnum
41
+
42
+_logger = logging.getLogger(__name__)
43
44
try:
45
# Currently, clarity_process is a module that is not packaged, so needs
46
# to be put on the python path somewhere manually.
47
from clarity_process import ClarityProcessor
48
except:
49
_logger.warning("Could not import clarity_process module: no processing available.")
50
-_logger = logging.getLogger(__name__)
51
52
Mode = IntEnum("Mode", "difference, raw, calibrate")
53
0 commit comments