Skip to content

Commit c037d2b

Browse files
committed
Add the linalg namedtuples to __all__
1 parent 4c0b4d4 commit c037d2b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

numpy_array_api_compat/linalg.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,4 +112,5 @@ def vector_norm(x: ndarray, /, *, axis: Optional[Union[int, Tuple[int, ...]]] =
112112

113113
__all__ = linalg_all.copy()
114114
__all__ += ['cross', 'diagonal', 'matmul', 'matrix_norm', 'matrix_transpose',
115-
'outer', 'svdvals', 'tensordot', 'trace', 'vecdot', 'vector_norm']
115+
'outer', 'svdvals', 'tensordot', 'trace', 'vecdot', 'vector_norm',
116+
'EighResult', 'QRResult', 'SlogdetResult', 'SVDResult']

0 commit comments

Comments
 (0)