Skip to content

Commit 98aa73d

Browse files
committed
fix ArrayManager test
1 parent 3acd633 commit 98aa73d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/internals/concat.py

Lines changed: 1 addition & 1 deletion
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)