File tree 1 file changed +1
-3
lines changed
1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -2398,7 +2398,7 @@ cpdef object _concat_date_cols(tuple date_cols,
2398
2398
Py_ssize_t sequence_size, i, j
2399
2399
Py_ssize_t array_size, min_size = 0
2400
2400
object [:] result_view
2401
- object [:,:] arrays_view
2401
+ object [:, :] arrays_view
2402
2402
2403
2403
flatiter it
2404
2404
int all_numpy = 1
@@ -2407,7 +2407,6 @@ cpdef object _concat_date_cols(tuple date_cols,
2407
2407
object array
2408
2408
list list_to_join
2409
2409
2410
-
2411
2410
keep_numbers = keep_trivial_numbers
2412
2411
sequence_size = len (date_cols)
2413
2412
@@ -2441,7 +2440,6 @@ cpdef object _concat_date_cols(tuple date_cols,
2441
2440
for i in range (sequence_size):
2442
2441
iters_view[i] = PyArray_IterNew(date_cols[i])
2443
2442
2444
-
2445
2443
result = np.zeros(min_size, dtype = object )
2446
2444
result_view = result
2447
2445
You can’t perform that action at this time.
0 commit comments