Skip to content

Commit aa5ef2d

Browse files
committed
fix duplicated
1 parent 360597c commit aa5ef2d

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

ci/code_checks.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
175175
-i "pandas.Timestamp.tzinfo GL08" \
176176
-i "pandas.Timestamp.value GL08" \
177177
-i "pandas.Timestamp.year GL08" \
178-
-i "pandas.api.extensions.ExtensionArray.duplicated RT03,SA01" \
179178
-i "pandas.api.extensions.ExtensionArray.fillna SA01" \
180179
-i "pandas.api.extensions.ExtensionArray.insert PR07,RT03,SA01" \
181180
-i "pandas.api.extensions.ExtensionArray.interpolate PR01,SA01" \

pandas/core/arrays/base.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1220,6 +1220,15 @@ def duplicated(
12201220
Returns
12211221
-------
12221222
ndarray[bool]
1223+
With true in indices where elements are duplicated and false otherwise.
1224+
1225+
See Also
1226+
--------
1227+
DataFrame.duplicated : Return boolean Series denoting
1228+
duplicate rows.
1229+
Series.duplicated : Indicate duplicate Series values.
1230+
api.extensions.ExtensionArray.unique : Compute the ExtensionArray
1231+
of unique values.
12231232
12241233
Examples
12251234
--------

0 commit comments

Comments
 (0)