From e153534b116708b31da6b6df7f63df5bd9e4985a Mon Sep 17 00:00:00 2001 From: javiber Date: Wed, 5 Jun 2024 15:28:06 -0300 Subject: [PATCH] Removed unnecessary default value for sampling --- temporian/core/operators/window/moving_quantile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/temporian/core/operators/window/moving_quantile.py b/temporian/core/operators/window/moving_quantile.py index 9cb302e1..77c776c4 100644 --- a/temporian/core/operators/window/moving_quantile.py +++ b/temporian/core/operators/window/moving_quantile.py @@ -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(