Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
reswqa committed Sep 19, 2023
1 parent 8c041fd commit 42a4f66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/polars-core/src/series/arithmetic/borrowed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ pub mod checked {
// see check_div for chunkedarray<T>
let rhs = unsafe { lhs.unpack_series_matching_physical_type(rhs) };

Ok(arity::binary_elementwise::<_, _, Float32Type, _, _>(
Ok(arity::binary_elementwise::<_, _, Float32Type, _>(
lhs,
rhs,
|opt_l, opt_r| match (opt_l, opt_r) {
Expand All @@ -201,7 +201,7 @@ pub mod checked {
// see check_div
let rhs = unsafe { lhs.unpack_series_matching_physical_type(rhs) };

Ok(arity::binary_elementwise::<_, _, Float64Type, _, _>(
Ok(arity::binary_elementwise::<_, _, Float64Type, _>(
lhs,
rhs,
|opt_l, opt_r| match (opt_l, opt_r) {
Expand Down

0 comments on commit 42a4f66

Please sign in to comment.