From 6174a67889129954e7e125a79b036e4aaedd1c4b Mon Sep 17 00:00:00 2001 From: telamonian Date: Thu, 22 Oct 2020 04:01:09 -0400 Subject: [PATCH] export to top-level __init__.py --- ndindex/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ndindex/__init__.py b/ndindex/__init__.py index 37667c1b..d17a9f85 100644 --- a/ndindex/__init__.py +++ b/ndindex/__init__.py @@ -1,8 +1,8 @@ __all__ = [] -from .ndindex import ndindex +from .ndindex import parse_index, ndindex -__all__ += ['ndindex'] +__all__ += ['parse_index', 'ndindex'] from .slice import Slice