Adjust for style

This commit is contained in:
Thomas Gideon 2023-07-16 09:15:46 -04:00
parent b861469319
commit cfd4d41a73

View file

@ -45,10 +45,10 @@ pub(super) async fn format_status(
Ok(format!( Ok(format!(
"{}{}", "{}{}",
ancestor, ancestor,
if !thread.is_empty() { if thread.is_empty() {
format!("\n{}", thread)
} else {
String::default() String::default()
} else {
format!("\n{}", thread)
} }
)) ))
} }