Skip to content

Commit 6622f24

Browse files
committed
fix unique
1 parent d27cdfb commit 6622f24

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

ci/code_checks.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
176176
-i "pandas.Timestamp.value GL08" \
177177
-i "pandas.Timestamp.year GL08" \
178178
-i "pandas.api.extensions.ExtensionArray.interpolate PR01,SA01" \
179-
-i "pandas.api.extensions.ExtensionArray.unique RT03,SA01" \
180179
-i "pandas.api.extensions.ExtensionArray.view SA01" \
181180
-i "pandas.api.interchange.from_dataframe RT03,SA01" \
182181
-i "pandas.api.types.is_bool PR01,SA01" \

pandas/core/arrays/base.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1319,6 +1319,13 @@ def unique(self) -> Self:
13191319
Returns
13201320
-------
13211321
pandas.api.extensions.ExtensionArray
1322+
With unique values from the input array.
1323+
1324+
See Also
1325+
--------
1326+
Index.unique: Return unique values in the index.
1327+
Series.unique: Return unique values of Series object.
1328+
unique: Return unique values based on a hash table.
13221329
13231330
Examples
13241331
--------

0 commit comments

Comments
 (0)