From 86b742e32b342b04b0a570cab830f53694ae1232 Mon Sep 17 00:00:00 2001 From: markfairbanks Date: Sat, 26 Oct 2024 10:30:27 -0600 Subject: [PATCH] Reexport `pl.Null` --- CHANGELOG.md | 4 ++++ tidypolars/reexports.py | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6af25cd..2a14f81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## v0.3.2 (in development) +#### Functionality improvements + +* `pl.Null` is rexported as `tp.Null` + ## v0.3.1 #### Functionality improvements diff --git a/tidypolars/reexports.py b/tidypolars/reexports.py index 76c1752..c65185b 100644 --- a/tidypolars/reexports.py +++ b/tidypolars/reexports.py @@ -32,4 +32,5 @@ List = pl.List Date = pl.Date Datetime = pl.Datetime -Object = pl.Object \ No newline at end of file +Object = pl.Object +Null = pl.Null \ No newline at end of file