diff options
Diffstat (limited to 'numpy/_array_api/_set_functions.py')
-rw-r--r-- | numpy/_array_api/_set_functions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/_array_api/_set_functions.py b/numpy/_array_api/_set_functions.py index 4dfc215a7..91927a3a0 100644 --- a/numpy/_array_api/_set_functions.py +++ b/numpy/_array_api/_set_functions.py @@ -10,4 +10,4 @@ def unique(x: array, /, *, return_counts: bool = False, return_index: bool = Fal See its docstring for more information. """ - return np.unique._implementation(x, return_counts=return_counts, return_index=return_index, return_inverse=return_inverse) + return np.unique(x, return_counts=return_counts, return_index=return_index, return_inverse=return_inverse) |