Skip to content

Commit b22f235

Browse files
authoredDec 2, 2024··
DOC: fix SA01,ES01 for pandas.arrays.IntegerArray (#60447)
1 parent 335f600 commit b22f235

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed
 

‎ci/code_checks.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
8383
-i "pandas.Timestamp.resolution PR02" \
8484
-i "pandas.Timestamp.tzinfo GL08" \
8585
-i "pandas.arrays.ArrowExtensionArray PR07,SA01" \
86-
-i "pandas.arrays.IntegerArray SA01" \
8786
-i "pandas.arrays.IntervalArray.length SA01" \
8887
-i "pandas.arrays.NumpyExtensionArray SA01" \
8988
-i "pandas.arrays.TimedeltaArray PR07,SA01" \

‎pandas/core/arrays/integer.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,12 @@ class IntegerArray(NumericArray):
105105
-------
106106
IntegerArray
107107
108+
See Also
109+
--------
110+
array : Create an array using the appropriate dtype, including ``IntegerArray``.
111+
Int32Dtype : An ExtensionDtype for int32 integer data.
112+
UInt16Dtype : An ExtensionDtype for uint16 integer data.
113+
108114
Examples
109115
--------
110116
Create an IntegerArray with :func:`pandas.array`.

0 commit comments

Comments
 (0)
Please sign in to comment.