Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Oct 7, 2024
1 parent 8fac5bb commit 1bc6cef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/polars-python/src/lazyframe/visitor/nodes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ pub(crate) fn into_py(py: Python<'_>, plan: &IR) -> PyResult<PyObject> {
ie_options
.operator2
.as_ref()
.map_or_else(|| py.None(), |op| Wrap(*op).into_py(py)),
.map_or_else(|| py.None(), |op| crate::Wrap(*op).into_py(py)),
)
.into_py(py),
},
Expand Down

0 comments on commit 1bc6cef

Please sign in to comment.