Skip to content
Snippets Groups Projects
Commit b823eb76 authored by Peter Lünenschloß's avatar Peter Lünenschloß
Browse files

make annotatedFloatScheme available through string selection

parent 55b7ceb9
No related branches found
No related tags found
1 merge request!855make annotatedFloatScheme available through string selection
......@@ -10,7 +10,13 @@
from saqc.constants import BAD, DOUBTFUL, FILTER_ALL, FILTER_NONE, GOOD, UNFLAGGED
from saqc.exceptions import ParsingError
from saqc.core import Flags, DictOfSeries, SaQC
from saqc.core.translation import DmpScheme, FloatScheme, PositionalScheme, SimpleScheme
from saqc.core.translation import (
DmpScheme,
FloatScheme,
PositionalScheme,
SimpleScheme,
AnnotatedFloatScheme,
)
from saqc.parsing.reader import fromConfig
from saqc.version import __version__
......
......@@ -22,6 +22,7 @@ from saqc.core.frame import DictOfSeries
from saqc.core.history import History
from saqc.core.register import FUNC_MAP
from saqc.core.translation import (
AnnotatedFloatScheme,
DmpScheme,
FloatScheme,
PositionalScheme,
......@@ -41,6 +42,7 @@ TRANSLATION_SCHEMES = {
"float": FloatScheme,
"dmp": DmpScheme,
"positional": PositionalScheme,
"annotated-float": AnnotatedFloatScheme,
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment