diff --git a/apply/src/apply.rs b/apply/src/apply.rs
index 68118e6..b35610e 100644
--- a/apply/src/apply.rs
+++ b/apply/src/apply.rs
@@ -2,7 +2,7 @@ extern crate polars;
use polars::prelude::*;//{CsvReader, DataType, DataFrame, Series};
use polars::lazy::dsl;
-//use polars::lazy::dsl::Expr;
+use polars::lazy::dsl::Expr;
fn check_ptr<'a, T>(ptr: *mut T) -> &'a mut T {
unsafe {
@@ -54,8 +54,8 @@ pub extern "C" fn ap_apply_monadic(ptr: *mut ExprC) -> *mut ExprC {
//START_APPLY - dyadic
fn do_apply_dyadic(s: Series) -> Result