Skip to content

Commit

Permalink
Removed unnecessary default value for sampling
Browse files Browse the repository at this point in the history
  • Loading branch information
javiber committed Jun 5, 2024
1 parent 5d5f05f commit e153534
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion temporian/core/operators/window/moving_quantile.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __init__(
input: EventSetNode,
window_length: WindowLength,
quantile: float,
sampling: Optional[EventSetNode] = None,
sampling: Optional[EventSetNode],
):
if quantile < 0 or quantile > 1:
raise ValueError(
Expand Down

0 comments on commit e153534

Please sign in to comment.