From 1000d52556325864fe04e29bbdbfacd4c5a6175a Mon Sep 17 00:00:00 2001 From: phoenix Date: Sat, 11 Oct 2025 18:10:28 -0400 Subject: [PATCH] Code formatting --- src/coverart.rs | 4 +++- src/song.rs | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) 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),