Skip to content

Commit

Permalink
features
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Oct 2, 2024
1 parent 64f5b32 commit 217d72f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/polars-plan/src/dsl/expr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ use polars_core::prelude::*;
use serde::{Deserialize, Serialize};

pub use super::expr_dyn_fn::*;
use crate::prelude::python_udf::PythonUdfExpression;
use crate::prelude::*;

#[derive(PartialEq, Clone, Hash)]
Expand Down Expand Up @@ -212,7 +211,7 @@ impl OpaqueColumnUdf {
Self::Deserialized(t) => Ok(t),
Self::Bytes(b) => {
feature_gated!("serde", {
PythonUdfExpression::try_deserialize(b.as_ref()).map(SpecialEq::new)
python_udf::PythonUdfExpression::try_deserialize(b.as_ref()).map(SpecialEq::new)
})
},
}
Expand Down

0 comments on commit 217d72f

Please sign in to comment.