From 80041742318f93a535635e59c7725eb7a8b85b02 Mon Sep 17 00:00:00 2001 From: James Edwards Date: Sun, 31 Mar 2024 12:16:25 -0400 Subject: [PATCH] Changing default to null_on_oob=True (missed one) --- py-polars/polars/series/list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-polars/polars/series/list.py b/py-polars/polars/series/list.py index 8db895d003ab..88936360d4a6 100644 --- a/py-polars/polars/series/list.py +++ b/py-polars/polars/series/list.py @@ -351,7 +351,7 @@ def get( self, index: int | Series | list[int], *, - null_on_oob: bool = False, + null_on_oob: bool = True, ) -> Series: """ Get the value by index in the sublists.