Skip to content

Commit 259f93d

Browse files
committed
add in err msg: no argsort
1 parent 6e69083 commit 259f93d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/array_api_extra/_delegation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ def argpartition(
438438
if xp is None:
439439
xp = array_namespace(a)
440440
if is_pydata_sparse_namespace(xp):
441-
msg = "Not implemented for sparse backend"
441+
msg = "Not implemented for sparse backend: no argsort"
442442
raise NotImplementedError(msg)
443443
if a.ndim < 1:
444444
msg = "`a` must be at least 1-dimensional"

0 commit comments

Comments
 (0)