Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
stinodego committed Jan 18, 2024
1 parent 8e9c723 commit c90dc76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/polars-ops/src/series/ops/negate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pub fn negate(s: &Series) -> PolarsResult<Series> {
Float32 => negate_numeric(s.f32().unwrap()).into_series(),
Float64 => negate_numeric(s.f64().unwrap()).into_series(),
#[cfg(feature = "dtype-decimal")]
Decimal(precision, scale) => {
Decimal(_, _) => {
let ca = s.decimal().unwrap();
let precision = ca.precision();
let scale = ca.scale();
Expand Down

0 comments on commit c90dc76

Please sign in to comment.