Skip to content

Commit

Permalink
docs(python): Fix markdown newline for rendering function description…
Browse files Browse the repository at this point in the history
… in VSCode (#14567)
  • Loading branch information
CBell045 authored Feb 17, 2024
1 parent 53ba56a commit b50831a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions py-polars/polars/io/csv/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ def read_csv(
- `List[str]`: All values equal to any string in this list will be null.
- `Dict[str, str]`: A dictionary that maps column name to a
null value string.
missing_utf8_is_empty_string
By default a missing value is considered to be null; if you would prefer missing
utf8 values to be treated as the empty string you can set this param True.
Expand Down Expand Up @@ -509,6 +510,7 @@ def read_csv_batched(
- `List[str]`: All values equal to any string in this list will be null.
- `Dict[str, str]`: A dictionary that maps column name to a
null value string.
missing_utf8_is_empty_string
By default a missing value is considered to be null; if you would prefer missing
utf8 values to be treated as the empty string you can set this param True.
Expand Down Expand Up @@ -802,6 +804,7 @@ def scan_csv(
- `List[str]`: All values equal to any string in this list will be null.
- `Dict[str, str]`: A dictionary that maps column name to a
null value string.
missing_utf8_is_empty_string
By default a missing value is considered to be null; if you would prefer missing
utf8 values to be treated as the empty string you can set this param True.
Expand Down

0 comments on commit b50831a

Please sign in to comment.