Skip to content

Commit aa41fbf

Browse files
committed
Hide frequenz.sdk.timeseries.sample
The Sample symbol is already exposed directly in frequenz.sdk.timeseries. Signed-off-by: Leandro Lucarella <[email protected]>
1 parent 498b131 commit aa41fbf

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

src/frequenz/sdk/timeseries/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"""
1212

1313
from ._resampler import GroupResampler, Resampler, ResamplingFunction
14-
from .sample import Sample
14+
from ._sample import Sample
1515

1616
__all__ = [
1717
"GroupResampler",

src/frequenz/sdk/timeseries/_resampler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from datetime import datetime, timedelta, timezone
99
from typing import Callable, Deque, Dict, Generator, Optional, Sequence, Tuple
1010

11-
from .sample import Sample
11+
from ._sample import Sample
1212

1313
logger = logging.Logger(__name__)
1414

0 commit comments

Comments
 (0)