Skip to content

Commit 8ea7c56

Browse files
DOC: fix PR07,SA01 for pandas.arrays.ArrowExtensionArray (#60724)
1 parent fb6c4e3 commit 8ea7c56

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

ci/code_checks.sh

-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
7979
-i "pandas.Timestamp.min PR02" \
8080
-i "pandas.Timestamp.resolution PR02" \
8181
-i "pandas.Timestamp.tzinfo GL08" \
82-
-i "pandas.arrays.ArrowExtensionArray PR07,SA01" \
8382
-i "pandas.arrays.TimedeltaArray PR07,SA01" \
8483
-i "pandas.core.groupby.DataFrameGroupBy.plot PR02" \
8584
-i "pandas.core.groupby.SeriesGroupBy.plot PR02" \

pandas/core/arrays/arrow/array.py

+7
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,7 @@ class ArrowExtensionArray(
258258
Parameters
259259
----------
260260
values : pyarrow.Array or pyarrow.ChunkedArray
261+
The input data to initialize the ArrowExtensionArray.
261262
262263
Attributes
263264
----------
@@ -271,6 +272,12 @@ class ArrowExtensionArray(
271272
-------
272273
ArrowExtensionArray
273274
275+
See Also
276+
--------
277+
array : Create a Pandas array with a specified dtype.
278+
DataFrame.to_feather : Write a DataFrame to the binary Feather format.
279+
read_feather : Load a feather-format object from the file path.
280+
274281
Notes
275282
-----
276283
Most methods are implemented using `pyarrow compute functions. <https://arrow.apache.org/docs/python/api/compute.html>`__

0 commit comments

Comments
 (0)