Skip to content

Commit 3a62b52

Browse files
committed
Fix wrong type hint
Signed-off-by: Leandro Lucarella <[email protected]>
1 parent 851a476 commit 3a62b52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def __repr__(self) -> str:
145145
"""
146146
return "("
147147

148-
def apply(self, _: List[Optional[float]]) -> None:
148+
def apply(self, _: List[float]) -> None:
149149
"""No-op."""
150150

151151

0 commit comments

Comments
 (0)