Skip to content

Commit 0938424

Browse files
committed
Alias mod as _xp, clean __init__ namespace
1 parent eb706ca commit 0938424

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

array_api_tests/__init__.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
from hypothesis.extra.array_api import make_strategies_namespace
22

3-
from ._array_module import mod as xp
3+
from ._array_module import mod as _xp
44

55

6-
xps = make_strategies_namespace(xp)
6+
xps = make_strategies_namespace(_xp)
7+
8+
9+
del _xp
10+
del make_strategies_namespace

0 commit comments

Comments
 (0)