Skip to content

Commit c4c1e27

Browse files
authored
REF: ArrowExtensionArray _data -> _pa_array (#52066)
ArrowExtensionArray._data to ._pa_array
1 parent 4ab82d0 commit c4c1e27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/arrays/arrow/array.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ class ArrowExtensionArray(
217217
Length: 3, dtype: int64[pyarrow]
218218
""" # noqa: E501 (http link too long)
219219

220-
_data: pa.ChunkedArray
220+
_pa_array: pa.ChunkedArray
221221
_dtype: ArrowDtype
222222

223223
def __init__(self, values: pa.Array | pa.ChunkedArray) -> None:

0 commit comments

Comments
 (0)