From 967d26fff3a53a64bde9c4d7fc303fc1e6505b17 Mon Sep 17 00:00:00 2001 From: "Shane F. Carr" Date: Mon, 16 Dec 2024 14:01:30 -0800 Subject: [PATCH] fmt --- components/decimal/src/lib.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/components/decimal/src/lib.rs b/components/decimal/src/lib.rs index 52b8afb2422..b1cdce69120 100644 --- a/components/decimal/src/lib.rs +++ b/components/decimal/src/lib.rs @@ -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() } }