diff --git a/src/coverart.rs b/src/coverart.rs index 6b7a782..06ac2fc 100644 --- a/src/coverart.rs +++ b/src/coverart.rs @@ -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", + )) } } } diff --git a/src/song.rs b/src/song.rs index 99b05d6..230b516 100644 --- a/src/song.rs +++ b/src/song.rs @@ -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),