Skip to content

Commit

Permalink
refactor(python): Remove unused with_column method of PyLazyFrame (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
eitsupi authored Jul 13, 2024
1 parent f2fed3b commit 99677a7
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions py-polars/src/lazyframe/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -946,11 +946,6 @@ impl PyLazyFrame {
.into())
}

fn with_column(&mut self, expr: PyExpr) -> Self {
let ldf = self.ldf.clone();
ldf.with_column(expr.inner).into()
}

fn with_columns(&mut self, exprs: Vec<PyExpr>) -> Self {
let ldf = self.ldf.clone();
ldf.with_columns(exprs.to_exprs()).into()
Expand Down

0 comments on commit 99677a7

Please sign in to comment.