Skip to content

Commit 65a2ecd

Browse files
committed
fix ArrayManager test
1 parent 79af6ac commit 65a2ecd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/internals/concat.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def concat_arrays(to_concat: list) -> ArrayLike:
157157
arr.to_array(target_dtype) if isinstance(arr, NullArrayProxy) else arr
158158
for arr in to_concat
159159
]
160-
return type(to_concat_no_proxy[0])._concat_same_type(to_concat, axis=0)
160+
return type(to_concat_no_proxy[0])._concat_same_type(to_concat)
161161

162162
to_concat = [
163163
arr.to_array(target_dtype)

0 commit comments

Comments
 (0)