Skip to content

Commit 21bbf5d

Browse files
committed
Fix bugs
1 parent 807ce41 commit 21bbf5d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

array_api_compat/dask/array/linalg.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# from dask.array.linalg import __all__ as linalg_all
2020
_n = {}
2121
exec('from dask.array.linalg import *', _n)
22-
for k in ('__builtins__', 'annotations', 'warnings', 'operator', 'Array'):
22+
for k in ('__builtins__', 'annotations', 'operator', 'warnings', 'Array'):
2323
_n.pop(k, None)
2424
linalg_all = list(_n)
2525
del _n, k
@@ -65,4 +65,4 @@ def svdvals(x: Array) -> Array:
6565
"cholesky", "matrix_rank", "matrix_norm", "svdvals",
6666
"vector_norm", "diagonal"]
6767

68-
_all_ignore = ['get_xp', 'da', 'linalg_all']
68+
_all_ignore = ['get_xp', 'da', 'linalg_all', 'warnings']

0 commit comments

Comments
 (0)