Skip to content

Commit 12647b4

Browse files
committed
ENH: Support for list of formats in pd.to_datetime() (pandas-dev#55226)
1 parent 60d3366 commit 12647b4

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

pandas/core/tools/datetimes.py

-1
Original file line numberDiff line numberDiff line change
@@ -1150,7 +1150,6 @@ def to_datetime(
11501150
format = np.array(format, dtype="O")
11511151
return_list = [] # return list
11521152

1153-
11541153
for i, fmt in enumerate(format):
11551154
return_temp = convert_listlike(argc[i],fmt) # return object of convert_listlike
11561155
return_list.append(return_temp) # add in return list

0 commit comments

Comments
 (0)