Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
sffc committed Dec 16, 2024
1 parent 889b35c commit 967d26f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion components/decimal/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,10 @@ impl FixedDecimalFormatter {
match Value::try_from_str(self.symbols.get().numsys()) {
Ok(v) => v,
Err(e) => {
debug_assert!(false, "Problem converting numbering system ID to Value: {e}");
debug_assert!(
false,
"Problem converting numbering system ID to Value: {e}"
);
Value::new_empty()
}
}
Expand Down

0 comments on commit 967d26f

Please sign in to comment.