Skip to content

Commit f2b448d

Browse files
committed
Change logic & whatsnew
1 parent 46ff2c1 commit f2b448d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/arrays/arrow/array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1696,7 +1696,7 @@ def _str_accumulate(
16961696
# the first NA value onward.
16971697
idx = pc.index(na_mask, True).as_py()
16981698
tail = pa.nulls(len(pa_array) - idx, type=pa_array.type)
1699-
pa_array = pa_array[:idx].combine_chunks()
1699+
pa_array = pa_array[:idx]
17001700

17011701
# error: Cannot call function of unknown type
17021702
pa_result = pa.array(np_func(pa_array), type=pa_array.type) # type: ignore[operator]

0 commit comments

Comments
 (0)