Skip to content

Commit ddfcc1e

Browse files
author
Chris Bertinato
committed
Changed .to_numpy() to .to_pydatetime()
1 parent 3069649 commit ddfcc1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/parsers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3130,7 +3130,7 @@ def converter(*date_cols):
31303130
dayfirst=dayfirst,
31313131
errors='ignore',
31323132
infer_datetime_format=infer_datetime_format
3133-
).to_numpy()
3133+
).to_pydatetime()
31343134
except ValueError:
31353135
return tools.to_datetime(
31363136
parsing.try_parse_dates(strs, dayfirst=dayfirst))

0 commit comments

Comments
 (0)