From 8694d965675cab30948cc4fc8e8c67b80e067572 Mon Sep 17 00:00:00 2001 From: Matt Green Date: Thu, 19 Sep 2024 12:01:54 -0700 Subject: [PATCH] fix type signature --- py-denormalized/python/denormalized/datastream.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-denormalized/python/denormalized/datastream.py b/py-denormalized/python/denormalized/datastream.py index 2af0d2f..c9b12f7 100644 --- a/py-denormalized/python/denormalized/datastream.py +++ b/py-denormalized/python/denormalized/datastream.py @@ -105,7 +105,7 @@ def window( group_expr: list[Expr], aggr_expr: list[Expr], window_length_millis: int, - slide_millis: int = None, + slide_millis: int | None = None, ) -> "DataStream": """Apply a windowing operation to the DataStream.