Skip to content

Commit ce78589

Browse files
vnlitvinovanmyachev
authored andcommitted
Fix typo in _concat_date_cols
1 parent d05484e commit ce78589

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/_libs/lib.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2429,7 +2429,7 @@ cpdef object _concat_date_cols(object date_cols,
24292429
if array.dtype == object:
24302430
obj_iter = array
24312431
else:
2432-
obj_array = np.astype(object)
2432+
obj_array = array.astype(object)
24332433
obj_iter = obj_array
24342434
for i in range(array_size):
24352435
convert_and_set_item(obj_iter[i], i, result_view, keep_numbers)

0 commit comments

Comments
 (0)