Skip to content

Commit 46df017

Browse files
committed
Fix type-hint in formula engine
Signed-off-by: Sahas Subramanian <[email protected]>
1 parent 63411e6 commit 46df017

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/frequenz/sdk/timeseries/logical_meter/_formula_engine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ async def _synchronize_metric_timestamps(
8585
RuntimeError: when some streams have no value, or when the synchronization
8686
of timestamps fails.
8787
"""
88-
metrics_by_ts: Dict[datetime, str] = {}
88+
metrics_by_ts: Dict[datetime, list[str]] = {}
8989
for metric in metrics:
9090
result = metric.result()
9191
name = metric.get_name()

0 commit comments

Comments
 (0)