Skip to content

Commit 899228a

Browse files
author
Chris Bertinato
committed
Changed .to_numpy() to .to_pydatetime()
1 parent 7947433 commit 899228a

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
@@ -3149,7 +3149,7 @@ def converter(*date_cols):
31493149
dayfirst=dayfirst,
31503150
errors='ignore',
31513151
infer_datetime_format=infer_datetime_format
3152-
).to_numpy()
3152+
).to_pydatetime()
31533153
except ValueError:
31543154
return tools.to_datetime(
31553155
parsing.try_parse_dates(strs, dayfirst=dayfirst))

0 commit comments

Comments
 (0)