diff --git a/py-polars/src/expr/general.rs b/py-polars/src/expr/general.rs index e7df96a30bfa..88f7915a1fbc 100644 --- a/py-polars/src/expr/general.rs +++ b/py-polars/src/expr/general.rs @@ -401,8 +401,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() }