aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/output/formats.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/output/formats.rs b/src/output/formats.rs
index e7008ee..51de033 100644
--- a/src/output/formats.rs
+++ b/src/output/formats.rs
@@ -42,7 +42,9 @@ impl Format for HumanReadable {
.with_timezone(&Local)
.format("%Y-%m-%d %H:%M:%S %a"),
"Boss".green(),
- item.boss.map(|x| x.to_string()).unwrap_or_else(|| "unknown".into()),
+ item.boss
+ .map(|x| x.to_string())
+ .unwrap_or_else(|| "unknown".into()),
if item.is_cm { " CM" } else { "" },
outcome,
)