Skip to content

Commit

Permalink
ticks
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Mar 6, 2025
1 parent ba83e33 commit e4531dd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion py-polars/polars/io/csv/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def read_csv(
--------
Calling `read_csv().lazy()` is an antipattern as this forces Polars to materialize
a full csv file and therefore cannot push any optimizations into the reader.
Therefore always prefer `scan_csv` if you want to work with `LazyFrame`s.
Therefore always prefer `scan_csv` if you want to work with `LazyFrame` s.
Notes
-----
Expand Down
2 changes: 1 addition & 1 deletion py-polars/polars/io/ipc/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def read_ipc(
--------
Calling `read_ipc().lazy()` is an antipattern as this forces Polars to materialize
a full csv file and therefore cannot push any optimizations into the reader.
Therefore always prefer `scan_ipc` if you want to work with `LazyFrame`s.
Therefore always prefer `scan_ipc` if you want to work with `LazyFrame` s.
If `memory_map` is set, the bytes on disk are mapped 1:1 to memory.
That means that you cannot write to the same filename.
Expand Down
2 changes: 1 addition & 1 deletion py-polars/polars/io/ndjson.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def read_ndjson(
Calling `read_ndjson().lazy()` is an antipattern as this forces Polars to
materialize a full ndjson file and therefore cannot push any optimizations into
the reader. Therefore always prefer `scan_ndjson` if you want to work with
`LazyFrame`s.
`LazyFrame` s.
Examples
--------
Expand Down
2 changes: 1 addition & 1 deletion py-polars/polars/io/parquet/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def read_parquet(
Calling `read_parquet().lazy()` is an antipattern as this forces Polars to
materialize a full parquet file and therefore cannot push any optimizations
into the reader. Therefore always prefer `scan_parquet` if you want to work
with `LazyFrame`s.
with `LazyFrame` s.
"""
if schema is not None:
Expand Down

0 comments on commit e4531dd

Please sign in to comment.