Skip to content

Commit b1b6cb5

Browse files
committed
fix docstring
1 parent b888a39 commit b1b6cb5

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
@@ -1949,7 +1949,8 @@ def _explode(self) -> tuple[Self, npt.NDArray[np.uint64]]:
19491949
Examples
19501950
--------
19511951
>>> import pyarrow as pa
1952-
>>> a = pd.array([[1, 2, 3], [4], [5, 6]], dtype=pd.ArrowDtype(pa.list_(pa.int64())))
1952+
>>> a = pd.array([[1, 2, 3], [4], [5, 6]],
1953+
... dtype=pd.ArrowDtype(pa.list_(pa.int64())))
19531954
>>> a._explode()
19541955
(<ArrowExtensionArray>
19551956
[1, 2, 3, 4, 5, 6]

0 commit comments

Comments
 (0)