Skip to content

Commit 7947433

Browse files
author
Chris Bertinato
committed
Fix for broken CSV tests
1 parent 57e16b2 commit 7947433

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pandas/io/parsers.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3146,11 +3146,10 @@ def converter(*date_cols):
31463146
return tools.to_datetime(
31473147
ensure_object(strs),
31483148
utc=None,
3149-
box=False,
31503149
dayfirst=dayfirst,
31513150
errors='ignore',
31523151
infer_datetime_format=infer_datetime_format
3153-
)
3152+
).to_numpy()
31543153
except ValueError:
31553154
return tools.to_datetime(
31563155
parsing.try_parse_dates(strs, dayfirst=dayfirst))

0 commit comments

Comments
 (0)