Skip to content
Snippets Groups Projects
Commit 90a4ab26 authored by David Schäfer's avatar David Schäfer
Browse files

Merge branch 'imports' into 'develop'

cleanup the global imports

See merge request !361
parents 670aa8e7 49bcb4fa
No related branches found
No related tags found
2 merge requests!370Release 2.0,!361cleanup the global imports
Pipeline #53653 passed with stage
in 2 minutes and 17 seconds
...@@ -10,15 +10,9 @@ from saqc.constants import ( ...@@ -10,15 +10,9 @@ from saqc.constants import (
DOUBTFUL, DOUBTFUL,
BAD, BAD,
) )
from saqc.core import ( from saqc.core import (
register,
flagging,
processing,
Flags, Flags,
FloatScheme,
DmpScheme,
PositionalScheme,
SimpleScheme,
SaQC, SaQC,
fromConfig, fromConfig,
) )
...@@ -7,9 +7,10 @@ __all__ = [ ...@@ -7,9 +7,10 @@ __all__ = [
"DiosLikeT", "DiosLikeT",
"CurveFitter", "CurveFitter",
"ExternalFlag", "ExternalFlag",
"OptionalNone",
] ]
from typing import Any, Callable, TypeVar, Union, Dict from typing import Any, TypeVar, Union, Dict
from typing_extensions import Protocol, Literal from typing_extensions import Protocol, Literal
import numpy as np import numpy as np
import pandas as pd import pandas as pd
......
...@@ -6,8 +6,7 @@ import numpy as np ...@@ -6,8 +6,7 @@ import numpy as np
import pandas as pd import pandas as pd
import saqc import saqc
from saqc.core import initFlagsLike from saqc.core import initFlagsLike, SaQC, register
from saqc import SaQC, register
from saqc.core.flags import Flags from saqc.core.flags import Flags
from saqc.core.register import processing from saqc.core.register import processing
......
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