Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SaQC
Manage
Activity
Members
Labels
Plan
Issues
35
Issue boards
Milestones
Wiki
Code
Merge requests
7
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
49bcb4fa
Commit
49bcb4fa
authored
3 years ago
by
David Schäfer
Browse files
Options
Downloads
Patches
Plain Diff
cleanup the global imports
parent
dd1d600a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!370
Release 2.0
,
!361
cleanup the global imports
Pipeline
#53384
passed with stage
in 1 minute and 33 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
saqc/__init__.py
+1
-7
1 addition, 7 deletions
saqc/__init__.py
saqc/lib/types.py
+2
-1
2 additions, 1 deletion
saqc/lib/types.py
tests/core/test_core.py
+1
-2
1 addition, 2 deletions
tests/core/test_core.py
with
4 additions
and
10 deletions
saqc/__init__.py
+
1
−
7
View file @
49bcb4fa
...
...
@@ -11,15 +11,9 @@ from saqc.constants import (
DOUBTFUL
,
BAD
,
)
from
saqc.core
import
(
register
,
flagging
,
processing
,
Flags
,
FloatScheme
,
DmpScheme
,
PositionalScheme
,
SimpleScheme
,
SaQC
,
fromConfig
,
)
This diff is collapsed.
Click to expand it.
saqc/lib/types.py
+
2
−
1
View file @
49bcb4fa
...
...
@@ -8,9 +8,10 @@ __all__ = [
"
FreqString
"
,
"
CurveFitter
"
,
"
ExternalFlag
"
,
"
OptionalNone
"
,
]
from
typing
import
Any
,
Callable
,
TypeVar
,
Union
,
Dict
from
typing
import
Any
,
TypeVar
,
Union
,
Dict
from
typing_extensions
import
Protocol
,
Literal
import
numpy
as
np
import
pandas
as
pd
...
...
This diff is collapsed.
Click to expand it.
tests/core/test_core.py
+
1
−
2
View file @
49bcb4fa
...
...
@@ -6,8 +6,7 @@ import numpy as np
import
pandas
as
pd
import
saqc
from
saqc.core
import
initFlagsLike
from
saqc
import
SaQC
,
register
from
saqc.core
import
initFlagsLike
,
SaQC
,
register
from
saqc.core.flags
import
Flags
from
saqc.core.register
import
processing
...
...
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