Skip to content

Commit 399d0ad

Browse files
DOC: fix SA01 for pandas.arrays.BooleanArray
1 parent 2419343 commit 399d0ad

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
@@ -128,7 +128,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
128128
-i "pandas.api.types.is_re_compilable PR07,SA01" \
129129
-i "pandas.api.types.pandas_dtype PR07,RT03,SA01" \
130130
-i "pandas.arrays.ArrowExtensionArray PR07,SA01" \
131-
-i "pandas.arrays.BooleanArray SA01" \
132131
-i "pandas.arrays.DatetimeArray SA01" \
133132
-i "pandas.arrays.IntegerArray SA01" \
134133
-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)