diff --git a/aiostream/__init__.py b/aiostream/__init__.py index aab8640..3ac80c1 100644 --- a/aiostream/__init__.py +++ b/aiostream/__init__.py @@ -17,7 +17,7 @@ from . import stream, pipe from .aiter_utils import async_, await_ -from .core import StreamEmpty, operator, streamcontext +from .core import StreamEmpty, operator, pipable_operator, streamcontext __all__ = [ "stream", @@ -25,6 +25,7 @@ "async_", "await_", "operator", + "pipable_operator", "streamcontext", "StreamEmpty", ]