Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SaQC
Manage
Activity
Members
Labels
Plan
Issues
36
Issue boards
Milestones
Wiki
Code
Merge requests
8
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
rdm-software
SaQC
Commits
b823eb76
Commit
b823eb76
authored
11 months ago
by
Peter Lünenschloß
Browse files
Options
Downloads
Patches
Plain Diff
make annotatedFloatScheme available through string selection
parent
55b7ceb9
No related branches found
Branches containing commit
No related tags found
1 merge request
!855
make annotatedFloatScheme available through string selection
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
saqc/__init__.py
+7
-1
7 additions, 1 deletion
saqc/__init__.py
saqc/core/core.py
+2
-0
2 additions, 0 deletions
saqc/core/core.py
with
9 additions
and
1 deletion
saqc/__init__.py
+
7
−
1
View file @
b823eb76
...
...
@@ -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__
...
...
This diff is collapsed.
Click to expand it.
saqc/core/core.py
+
2
−
0
View file @
b823eb76
...
...
@@ -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
,
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment