Skip to content

Commit e38409c

Browse files
DOC: fix SA01 for pandas.arrays.BooleanArray (#59866)
1 parent 7543426 commit e38409c

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
@@ -122,7 +122,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
122122
-i "pandas.api.types.is_re_compilable PR07,SA01" \
123123
-i "pandas.api.types.pandas_dtype PR07,RT03,SA01" \
124124
-i "pandas.arrays.ArrowExtensionArray PR07,SA01" \
125-
-i "pandas.arrays.BooleanArray SA01" \
126125
-i "pandas.arrays.DatetimeArray SA01" \
127126
-i "pandas.arrays.IntegerArray SA01" \
128127
-i "pandas.arrays.IntervalArray.left SA01" \

pandas/core/arrays/boolean.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,13 @@ class BooleanArray(BaseMaskedArray):
286286
-------
287287
BooleanArray
288288
289+
See Also
290+
--------
291+
array : Create an array from data with the appropriate dtype.
292+
BooleanDtype : Extension dtype for boolean data.
293+
Series : One-dimensional ndarray with axis labels (including time series).
294+
DataFrame : Two-dimensional, size-mutable, potentially heterogeneous tabular data.
295+
289296
Examples
290297
--------
291298
Create an BooleanArray with :func:`pandas.array`:

0 commit comments

Comments
 (0)