Code formatting
All checks were successful
Rust Build / Check (pull_request) Successful in 35s
Rust Build / Test Suite (pull_request) Successful in 36s
Rust Build / Rustfmt (pull_request) Successful in 27s
Rust Build / Clippy (pull_request) Successful in 36s
Rust Build / build (pull_request) Successful in 43s

This commit is contained in:
2025-06-28 17:02:26 -04:00
parent 5c139da99e
commit 76024eeae9

View File

@@ -81,17 +81,15 @@ async fn some_work(
.await
{
Ok(response) => {
match response.json::<update_queued_song::response::Response>().await {
Ok(_inner_response) => {
Ok(())
}
Err(err) => Err(std::io::Error::other(
err.to_string()))
match response
.json::<update_queued_song::response::Response>()
.await
{
Ok(_inner_response) => Ok(()),
Err(err) => Err(std::io::Error::other(err.to_string())),
}
}
Err(err) => Err(std::io::Error::other(
err.to_string(),
)),
Err(err) => Err(std::io::Error::other(err.to_string())),
}
}
Err(err) => {