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!(
"{}{}",
ancestor,
if !thread.is_empty() {
format!("\n{}", thread)
} else {
if thread.is_empty() {
String::default()
} else {
format!("\n{}", thread)
}
))
}