Skip to content

Commit

Permalink
don't automatically parse dates
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Nov 17, 2021
1 parent de82bb1 commit 464525a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-polars/polars/eager/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ def read_csv(
comment_char: Optional[str] = None,
quote_char: Optional[str] = r'"',
null_values: Optional[Union[str, tp.List[str], Dict[str, str]]] = None,
parse_dates: bool = True,
parse_dates: bool = False,
) -> "DataFrame":
"""
Read a CSV file into a Dataframe.
Expand Down

0 comments on commit 464525a

Please sign in to comment.