Skip to content

Commit 1e79b84

Browse files
committed
actually wrap properly
1 parent db22d63 commit 1e79b84

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

array_api_compat/dask/array/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@
66
__array_api_version__ = '2022.12'
77

88
__import__(__package__ + '.linalg')
9+
__import__(__package__ + '.fft')

array_api_compat/dask/array/fft.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
from dask.array.fft import * # noqa: F403
22
from numpy.fft import __all__ as fft_all
33

4-
from ..common import _fft
5-
from .._internal import get_xp
4+
from ...common import _fft
5+
from ..._internal import get_xp
66

77
import dask.array as da
88

0 commit comments

Comments
 (0)