FIX: Cargo fmt

This commit is contained in:
Nicolás Hatcher
2025-06-29 10:25:07 +02:00
committed by Nicolás Hatcher Andrés
parent 0be7d9b85a
commit 5744ae4d77
5 changed files with 8 additions and 19 deletions

View File

@@ -84,9 +84,7 @@ impl Model {
CalcResult::String(value) => {
result = format!("{result}{value}");
}
CalcResult::Number(value) => {
result = format!("{result}{value}")
}
CalcResult::Number(value) => result = format!("{result}{value}"),
CalcResult::Boolean(value) => {
if value {
result = format!("{result}TRUE");