diff --git a/py-polars/src/expr/general.rs b/py-polars/src/expr/general.rs index fff48ca9e3a0..e85152c8fae9 100644 --- a/py-polars/src/expr/general.rs +++ b/py-polars/src/expr/general.rs @@ -398,8 +398,8 @@ impl PyExpr { } fn is_between(&self, lower: Self, upper: Self, closed: Wrap) -> Self { - self.clone() - .inner + self.inner + .clone() .is_between(lower.inner, upper.inner, closed.0) .into() }