From bf2425d6af624e0971f62723d633d9cbae2949a9 Mon Sep 17 00:00:00 2001 From: phoenix Date: Fri, 20 Jun 2025 20:35:39 -0400 Subject: [PATCH] Code formatting --- src/meta.rs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/meta.rs b/src/meta.rs index bab9b3a..c49d2b4 100644 --- a/src/meta.rs +++ b/src/meta.rs @@ -220,14 +220,16 @@ pub mod metadata { } }; - match vb.save_to_path(filepath, lofty::config::WriteOptions::default()) { + match vb.save_to_path(filepath, lofty::config::WriteOptions::default()) + { Ok(res) => { println!("Result: {:?}", res); Ok(value.to_owned()) } - Err(err) => { - Err(std::io::Error::new(std::io::ErrorKind::InvalidData, err.to_string())) - } + Err(err) => Err(std::io::Error::new( + std::io::ErrorKind::InvalidData, + err.to_string(), + )), } } None => Err(std::io::Error::new(