Skip to content

Commit df69086

Browse files
committed
changes left behind
1 parent 0d66160 commit df69086

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

array_api_compat/common/_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def your_function(x, y):
110110
elif _is_dask_array(x):
111111
_check_api_version(api_version)
112112
if _use_compat:
113-
from .. import dask as dask_namespace
113+
from ..dask import array as dask_namespace
114114
namespaces.add(dask_namespace)
115115
else:
116116
raise TypeError("_use_compat cannot be False if input array is a dask array!")

array_api_compat/dask/array/linalg.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
from dask.array.linalg import *
22
from dask.array.linalg import __all__ as linalg_all
33

4-
from ..common import _linalg
5-
from .._internal import get_xp
4+
from ...common import _linalg
5+
from ..._internal import get_xp
66
from ._aliases import (matmul, matrix_transpose, tensordot, vecdot)
77

88
import dask.array as da

0 commit comments

Comments
 (0)