Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove committed Nov 5, 2023
1 parent dc9f2a4 commit 93f3dbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/substrait.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ impl PySubstraitConsumer {
plan: PyPlan,
py: Python,
) -> PyResult<PyLogicalPlan> {
let result = consumer::from_substrait_plan(&mut ctx.ctx, &plan.plan);
let result = consumer::from_substrait_plan(&ctx.ctx, &plan.plan);
let logical_plan = wait_for_future(py, result).map_err(DataFusionError::from)?;
Ok(PyLogicalPlan::new(logical_plan))
}
Expand Down

0 comments on commit 93f3dbc

Please sign in to comment.