Code formatting

This commit is contained in:
2025-10-11 18:10:28 -04:00
parent 17e46f04f7
commit 1000d52556
2 changed files with 6 additions and 2 deletions

View File

@@ -48,7 +48,9 @@ impl CoverArt {
Err(err) => Err(err),
}
} else {
Err(std::io::Error::other("Cannot delete file that does not exist"))
Err(std::io::Error::other(
"Cannot delete file that does not exist",
))
}
}
}

View File

@@ -118,7 +118,9 @@ impl Song {
Err(err) => Err(err),
}
} else {
Err(std::io::Error::other("Cannot delete file that does not exist"))
Err(std::io::Error::other(
"Cannot delete file that does not exist",
))
}
}
Err(err) => Err(err),