Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
petrosbar committed Feb 7, 2024
1 parent e4317c1 commit 51b6f99
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions crates/polars-core/src/series/ops/null.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,7 @@ impl Series {
.into_series(),
#[cfg(feature = "dtype-decimal")]
DataType::Decimal(precision, scale) => Int128Chunked::full_null(name, size)
.into_decimal_unchecked(
*precision,
scale.unwrap_or(0),
)
.into_decimal_unchecked(*precision, scale.unwrap_or(0))
.into_series(),
#[cfg(feature = "dtype-struct")]
DataType::Struct(fields) => {
Expand Down

0 comments on commit 51b6f99

Please sign in to comment.