Skip to content

Commit ec6dcc4

Browse files
committed
fix dask.array for real this time
1 parent b6f4cf8 commit ec6dcc4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

array_api_compat/dask/array/_aliases.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,11 +152,11 @@ def asarray(
152152
# exclude these from all since
153153
_da_unsupported = ['sort', 'argsort']
154154

155-
common_aliases = [alias for alias in _aliases.__all__ if alias not in _da_unsupported]
155+
_common_aliases = [alias for alias in _aliases.__all__ if alias not in _da_unsupported]
156156

157-
__all__ = common_aliases + ['asarray', 'acos',
157+
__all__ = _common_aliases + ['asarray', 'acos',
158158
'acosh', 'asin', 'asinh', 'atan', 'atan2',
159159
'atanh', 'bitwise_left_shift', 'bitwise_invert',
160160
'bitwise_right_shift', 'concat', 'pow', 'iinfo', 'finfo', 'can_cast', 'result_type']
161161

162-
del get_xp, da, common_aliases, np
162+
_all_ignore = ["get_xp", "da", "np"]

0 commit comments

Comments
 (0)