Skip to content

Commit c05688e

Browse files
committed
fix docstring
1 parent 48148c1 commit c05688e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/core/arrays/base.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1955,7 +1955,8 @@ def _explode(self) -> tuple[Self, npt.NDArray[np.uint64]]:
19551955
Examples
19561956
--------
19571957
>>> import pyarrow as pa
1958-
>>> a = pd.array([[1, 2, 3], [4], [5, 6]], dtype=pd.ArrowDtype(pa.list_(pa.int64())))
1958+
>>> a = pd.array([[1, 2, 3], [4], [5, 6]],
1959+
... dtype=pd.ArrowDtype(pa.list_(pa.int64())))
19591960
>>> a._explode()
19601961
(<ArrowExtensionArray>
19611962
[1, 2, 3, 4, 5, 6]

0 commit comments

Comments
 (0)