diff --git a/src/rust/src/lazy/dataframe.rs b/src/rust/src/lazy/dataframe.rs index 732c8d1f6..bdb936b8b 100644 --- a/src/rust/src/lazy/dataframe.rs +++ b/src/rust/src/lazy/dataframe.rs @@ -480,7 +480,7 @@ impl LazyFrame { comm_subexpr_elim, streaming, fast_projection, - eager + eager, } = self.0.get_current_optimizations(); list!( type_coercion = type_coercion, diff --git a/src/rust/src/series.rs b/src/rust/src/series.rs index ee8e5e03b..2a9a2a6dc 100644 --- a/src/rust/src/series.rs +++ b/src/rust/src/series.rs @@ -112,7 +112,7 @@ impl Series { pub fn value_counts( &self, sort: bool, - parallel: bool + parallel: bool, ) -> std::result::Result { self.0 .value_counts(sort, parallel)