Skip to content

Commit

Permalink
fix python feature flagging
Browse files Browse the repository at this point in the history
  • Loading branch information
universalmind303 committed Jan 31, 2025
1 parent 2fc72e7 commit 19f6e31
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/daft-local-execution/src/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,17 @@ use daft_micropartition::{
};
use futures::{FutureExt, Stream};
use loole::RecvFuture;
use pyo3::{
ffi::c_str,
intern,
types::{PyAnyMethods, PyDict},
};
use tokio_util::sync::CancellationToken;
#[cfg(feature = "python")]
use {
common_daft_config::PyDaftExecutionConfig,
daft_logical_plan::PyLogicalPlanBuilder,
daft_micropartition::python::PyMicroPartition,
pyo3::{
pyclass, pymethods, Bound, IntoPyObject, PyAny, PyObject, PyRef, PyRefMut, PyResult, Python,
ffi::c_str,
intern, pyclass, pymethods,
types::{PyAnyMethods, PyDict},
Bound, IntoPyObject, PyAny, PyObject, PyRef, PyRefMut, PyResult, Python,
},
};

Expand Down

0 comments on commit 19f6e31

Please sign in to comment.