We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 768826f commit de26ad2Copy full SHA for de26ad2
larray/__init__.py
@@ -43,6 +43,8 @@
43
44
from larray.example import get_example_filepath, load_example_data, EXAMPLE_EXCEL_TEMPLATES_DIR
45
46
+# this makes larray.random functions accessible as la.random.* without explicitly importing larray.random
47
+import larray.random as _rnd
48
49
__all__ = [
50
# axis
@@ -113,3 +115,4 @@
113
115
114
116
# cleanup namespace (module was imported only to initialize handlers for .pkl and .pickle)
117
del _pkl
118
+del _rnd
0 commit comments