Skip to content

Commit c98fa8b

Browse files
committed
Add explicit import of linalg submodule to dpnp/__init__.py
1 parent e8b5138 commit c98fa8b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

dpnp/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,14 @@
7070
from .dpnp_iface_utils import *
7171
from .dpnp_iface_utils import __all__ as _ifaceutils__all__
7272
from ._version import get_versions
73+
from . import linalg as linalg
7374

7475
__all__ = _iface__all__
7576
__all__ += _ifaceutils__all__
7677

78+
# add submodules
79+
__all__ += ["linalg"]
80+
7781

7882
__version__ = get_versions()["version"]
7983
del get_versions

0 commit comments

Comments
 (0)