Skip to content

Commit

Permalink
docs[python]: Updating documentation on null_values in read_csv (#4565)
Browse files Browse the repository at this point in the history
updating meaning of passing a list of string to read_csv and scan_csv
  • Loading branch information
luk-f-a committed Aug 25, 2022
1 parent 3b7e1be commit 8fbee3d
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 @@ -137,7 +137,7 @@ def read_csv(
Values to interpret as null values. You can provide a:
- ``str``: All values equal to this string will be null.
- ``List[str]``: A null value per column.
- ``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.
ignore_errors
Expand Down Expand Up @@ -469,7 +469,7 @@ def scan_csv(
Values to interpret as null values. You can provide a:
- ``str``: All values equal to this string will be null.
- ``List[str]``: A null value per column.
- ``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.
ignore_errors
Expand Down

0 comments on commit 8fbee3d

Please sign in to comment.