From 3b3e864fd64a9c4c35a31a69285c78456f5913e3 Mon Sep 17 00:00:00 2001 From: Michael Chow Date: Mon, 27 Mar 2023 14:27:37 -0400 Subject: [PATCH] chore: re-add Pipeable import to top-level module --- siuba/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/siuba/__init__.py b/siuba/__init__.py index 7661b4f0..700029cb 100644 --- a/siuba/__init__.py +++ b/siuba/__init__.py @@ -2,7 +2,7 @@ __version__ = "0.4.2" # default imports-------------------------------------------------------------- -from .siu import _, Fx, Lam, pipe +from .siu import _, Fx, Lam, pipe, Pipeable from .dply.across import across from .dply.verbs import ( # Dply ---- @@ -30,7 +30,7 @@ __all__ = [ '_', "Fx", - "pipe", + "pipe", "Pipeable", "across", "group_by", "ungroup", "select", "rename",