Skip to content

Commit

Permalink
fix: unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
abealcantara committed Sep 7, 2023
1 parent 878ef5d commit 78e6a56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
5 changes: 1 addition & 4 deletions crates/polars-io/src/json/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,7 @@ pub struct JsonWriter<W: Write> {
json_format: JsonFormat,
}

impl<W: Write> JsonWriter<W>
where
W: Write + 'static,
{
impl<W: Write> JsonWriter<W> {
pub fn with_json_format(mut self, format: JsonFormat) -> Self {
self.json_format = format;
self
Expand Down
1 change: 1 addition & 0 deletions py-polars/polars/lazyframe/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -2191,6 +2191,7 @@ def sink_json(
comm_subplan_elim=False,
comm_subexpr_elim=False,
streaming=True,
eager=False,
)
return lf.sink_json(
path=path, json_format=json_format, maintain_order=maintain_order
Expand Down

0 comments on commit 78e6a56

Please sign in to comment.