Skip to content

Commit ddb20a3

Browse files
committed
Update stubs from the spec
1 parent 292bc0d commit ddb20a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

array_api_tests/function_stubs/linalg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def inv(x: array, /) -> array:
3838
def matmul(x1: array, x2: array, /) -> array:
3939
pass
4040

41-
def matrix_norm(x: array, /, *, axis: Tuple[int, int] = (-2, -1), keepdims: bool = False, ord: Optional[Union[int, float, Literal[inf, -inf, 'fro', 'nuc']]] = 'fro') -> array:
41+
def matrix_norm(x: array, /, *, keepdims: bool = False, ord: Optional[Union[int, float, Literal[inf, -inf, 'fro', 'nuc']]] = 'fro') -> array:
4242
pass
4343

4444
def matrix_power(x: array, n: int, /) -> array:

0 commit comments

Comments
 (0)