Skip to content

Commit 1b48cef

Browse files
DOC: fix PR07 for pandas.unique (#58887)
1 parent b0c4194 commit 1b48cef

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

ci/code_checks.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -779,7 +779,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
779779
-i "pandas.tseries.offsets.YearEnd.nanos GL08" \
780780
-i "pandas.tseries.offsets.YearEnd.normalize GL08" \
781781
-i "pandas.tseries.offsets.YearEnd.rule_code GL08" \
782-
-i "pandas.unique PR07" \
783782
-i "pandas.util.hash_pandas_object PR07,SA01" # There should be no backslash in the final line, please keep this comment in the last ignored function
784783

785784
RET=$(($RET + $?)) ; echo $MSG "DONE"

pandas/core/algorithms.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,8 @@ def unique(values):
319319
Parameters
320320
----------
321321
values : 1d array-like
322+
The input array-like object containing values from which to extract
323+
unique values.
322324
323325
Returns
324326
-------

0 commit comments

Comments
 (0)