Skip to content

Commit

Permalink
Move pyo3 import inside python feature guard
Browse files Browse the repository at this point in the history
  • Loading branch information
rchowell committed Jan 23, 2025
1 parent 59be26e commit dbaab85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/daft-logical-plan/src/builder/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ use daft_core::join::{JoinStrategy, JoinType};
use daft_dsl::{col, ExprRef};
use daft_schema::schema::{Schema, SchemaRef};
use indexmap::IndexSet;
use pyo3::intern;
#[cfg(feature = "python")]
pub use resolve_expr::py_check_column_name_validity;
use resolve_expr::ExprResolver;
Expand All @@ -29,6 +28,7 @@ use {
daft_dsl::python::PyExpr,
// daft_scan::python::pylib::ScanOperatorHandle,
daft_schema::python::schema::PySchema,
pyo3::intern,
pyo3::prelude::*,
};

Expand Down

0 comments on commit dbaab85

Please sign in to comment.