Skip to content

Commit

Permalink
don't use polars-flavor with arrow interop
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Feb 4, 2024
1 parent 7b894de commit 574d4bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyo3-polars/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ impl IntoPy<PyObject> for PySeries {
fn into_py(self, py: Python<'_>) -> PyObject {
let s = self.0.rechunk();
let name = s.name();
let arr = s.to_arrow(0, true);
let arr = s.to_arrow(0, false);
let pyarrow = py.import("pyarrow").expect("pyarrow not installed");
let polars = py.import("polars").expect("polars not installed");

Expand Down

0 comments on commit 574d4bd

Please sign in to comment.