Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
stinodego committed Oct 23, 2023
1 parent 7be4068 commit 0e61c7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion py-polars/src/expr/general.rs
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ impl PyExpr {
let expr = self.inner.clone();
let out = match fill_value {
Some(v) => expr.shift_and_fill(n, v.inner),
None => expr.shift(n)
None => expr.shift(n),
};
out.into()
}
Expand Down
2 changes: 1 addition & 1 deletion py-polars/src/lazyframe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,7 @@ impl PyLazyFrame {
let lf = self.ldf.clone();
let out = match fill_value {
Some(v) => lf.shift_and_fill(n, v.inner),
None => lf.shift(n)
None => lf.shift(n),
};
out.into()
}
Expand Down

0 comments on commit 0e61c7c

Please sign in to comment.