Skip to content

Commit

Permalink
add python files
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Apr 12, 2024
1 parent 9bc206a commit bc04c8d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions py-polars/polars/io/csv/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ def _read_csv_impl(
n_rows: int | None = None,
encoding: CsvEncoding = "utf8",
low_memory: bool = False,
rechunk: bool = True,
rechunk: bool = False,
skip_rows_after_header: int = 0,
row_index_name: str | None = None,
row_index_offset: int = 0,
Expand Down Expand Up @@ -611,7 +611,7 @@ def read_csv_batched(
n_rows: int | None = None,
encoding: CsvEncoding | str = "utf8",
low_memory: bool = False,
rechunk: bool = True,
rechunk: bool = False,
skip_rows_after_header: int = 0,
row_index_name: str | None = None,
row_index_offset: int = 0,
Expand Down Expand Up @@ -906,7 +906,7 @@ def scan_csv(
n_rows: int | None = None,
encoding: CsvEncoding = "utf8",
low_memory: bool = False,
rechunk: bool = True,
rechunk: bool = False,
skip_rows_after_header: int = 0,
row_index_name: str | None = None,
row_index_offset: int = 0,
Expand Down Expand Up @@ -1148,7 +1148,7 @@ def _scan_csv_impl(
n_rows: int | None = None,
encoding: CsvEncoding = "utf8",
low_memory: bool = False,
rechunk: bool = True,
rechunk: bool = False,
skip_rows_after_header: int = 0,
row_index_name: str | None = None,
row_index_offset: int = 0,
Expand Down

0 comments on commit bc04c8d

Please sign in to comment.