Skip to content

Commit

Permalink
fix(python): normalize filepath in sink_parquet (#11605)
Browse files Browse the repository at this point in the history
  • Loading branch information
orlp authored Oct 9, 2023
1 parent 3bda383 commit 5a234a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-polars/polars/lazyframe/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -1952,7 +1952,7 @@ def sink_parquet(
)

return lf.sink_parquet(
path=path,
path=normalize_filepath(path),
compression=compression,
compression_level=compression_level,
statistics=statistics,
Expand Down

0 comments on commit 5a234a7

Please sign in to comment.