Skip to content

Commit 3069649

Browse files
author
Chris Bertinato
committed
Fix for broken CSV tests
1 parent 5b84d9c commit 3069649

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
@@ -3127,11 +3127,10 @@ def converter(*date_cols):
31273127
return tools.to_datetime(
31283128
ensure_object(strs),
31293129
utc=None,
3130-
box=False,
31313130
dayfirst=dayfirst,
31323131
errors='ignore',
31333132
infer_datetime_format=infer_datetime_format
3134-
)
3133+
).to_numpy()
31353134
except ValueError:
31363135
return tools.to_datetime(
31373136
parsing.try_parse_dates(strs, dayfirst=dayfirst))

0 commit comments

Comments
 (0)