Skip to content

Commit 6795787

Browse files
DOC: fix SA01 for pandas.api.types.is_array_like (pandas-dev#59802)
1 parent e215121 commit 6795787

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

ci/code_checks.sh

-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
113113
-i "pandas.Timestamp.tzinfo GL08" \
114114
-i "pandas.Timestamp.year GL08" \
115115
-i "pandas.api.types.is_dict_like PR07,SA01" \
116-
-i "pandas.api.types.is_extension_array_dtype SA01" \
117116
-i "pandas.api.types.is_file_like PR07,SA01" \
118117
-i "pandas.api.types.is_float PR01,SA01" \
119118
-i "pandas.api.types.is_float_dtype SA01" \

pandas/core/dtypes/common.py

+4
Original file line numberDiff line numberDiff line change
@@ -1401,6 +1401,10 @@ def is_extension_array_dtype(arr_or_dtype) -> bool:
14011401
bool
14021402
Whether the `arr_or_dtype` is an extension array type.
14031403
1404+
See Also
1405+
--------
1406+
api.extensions.ExtensionArray : Abstract base class for pandas extension arrays.
1407+
14041408
Notes
14051409
-----
14061410
This checks whether an object implements the pandas extension

0 commit comments

Comments
 (0)