Skip to content

Commit b326d4b

Browse files
committed
Expose ResamplingFunction and SourceProperties
`ResamplingFunction` is used by `ResamplerConfig`, which is public, and `SourceProperties` is used by `ResamplingFunction`, so both should be public too. Signed-off-by: Leandro Lucarella <[email protected]>
1 parent 5eb4655 commit b326d4b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/frequenz/sdk/timeseries/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@
4040
from ._fuse import Fuse
4141
from ._moving_window import MovingWindow
4242
from ._periodic_feature_extractor import PeriodicFeatureExtractor
43-
from ._resampling._config import ResamplerConfig
43+
from ._resampling._base_types import SourceProperties
44+
from ._resampling._config import ResamplerConfig, ResamplingFunction
4445

4546
__all__ = [
4647
"Bounds",
@@ -49,7 +50,9 @@
4950
"PeriodicFeatureExtractor",
5051
"ResamplerConfig",
5152
"ReceiverFetcher",
53+
"ResamplingFunction",
5254
"Sample",
5355
"Sample3Phase",
56+
"SourceProperties",
5457
"UNIX_EPOCH",
5558
]

0 commit comments

Comments
 (0)