Skip to content

Commit

Permalink
Update read_csv and scan_csv quote_char docstring default value. (#2743)
Browse files Browse the repository at this point in the history
  • Loading branch information
ghuls committed Feb 23, 2022
1 parent 3b770e0 commit 2e8ea2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py-polars/polars/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def read_csv(
Character that indicates the start of a comment line, for
instance ``#``.
quote_char
Single byte character used for csv quoting, default = ''.
Single byte character used for csv quoting, default = ``"``.
Set to None to turn off special handling and escaping of quotes.
skip_rows
Start reading after ``skip_rows`` lines.
Expand Down Expand Up @@ -466,7 +466,7 @@ def scan_csv(
Character that indicates the start of a comment line, for
instance ``#``.
quote_char
Single byte character used for csv quoting, default = ''.
Single byte character used for csv quoting, default = ``"``.
Set to None to turn off special handling and escaping of quotes.
skip_rows
Start reading after ``skip_rows`` lines. The header will be parsed at this offset.
Expand Down

0 comments on commit 2e8ea2b

Please sign in to comment.