Skip to content

Commit

Permalink
Fix io.py docstring typos (#4295)
Browse files Browse the repository at this point in the history
1. Remove the bool annotation in the docstring
2. Drop the colons
  • Loading branch information
zundertj committed Aug 8, 2022
1 parent ab92d15 commit f65d706
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions py-polars/polars/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,10 +184,10 @@ def read_csv(
the DataFrame.
row_count_offset
Offset to start the row_count column (only used if the name is set).
sample_size:
sample_size
Set the sample size. This is used to sample statistics to estimate the
allocation needed.
eol_char:
eol_char
Single byte end of line character
Returns
Expand Down Expand Up @@ -498,7 +498,7 @@ def scan_csv(
parse_dates
Try to automatically parse dates. If this does not succeed,
the column remains of data type ``pl.Utf8``.
eol_char:
eol_char
Single byte end of line character
Returns
Expand Down Expand Up @@ -874,7 +874,7 @@ def read_parquet(
DataFrame.
row_count_offset
Offset to start the row_count column (only use if the name is set).
low_memory: bool
low_memory
Reduce memory pressure at the expense of performance.
**kwargs
kwargs for `pyarrow.parquet.read_table
Expand Down

0 comments on commit f65d706

Please sign in to comment.