Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
coastalwhite committed Sep 17, 2024
1 parent 4eb72b0 commit 5be5abb
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions crates/polars-core/src/datatypes/any_value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1276,7 +1276,9 @@ impl AnyValue<'_> {
},

(_, _) => {
unimplemented!("scalar eq_missing for mixed dtypes {self:?} and {other:?} is not supported")
unimplemented!(
"scalar eq_missing for mixed dtypes {self:?} and {other:?} is not supported"
)
},
}
}
Expand Down Expand Up @@ -1422,7 +1424,9 @@ impl PartialOrd for AnyValue<'_> {
},

(_, _) => {
unimplemented!("scalar ordering for mixed dtypes {self:?} and {other:?} is not supported")
unimplemented!(
"scalar ordering for mixed dtypes {self:?} and {other:?} is not supported"
)
},
}
}
Expand Down

0 comments on commit 5be5abb

Please sign in to comment.