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

Merge branch 'annotatedFloatSchemeAvailability' into 'develop'

make annotatedFloatScheme available through string selection

See merge request !855
parents 55b7ceb9 b823eb76
No related branches found
No related tags found
1 merge request!855make annotatedFloatScheme available through string selection
Pipeline #207487 passed with stages
in 5 minutes and 28 seconds
......@@ -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