diff --git a/crates/binstalk-downloader/src/utils.rs b/crates/binstalk-downloader/src/utils.rs index ee1e27cf..0fcb4f57 100644 --- a/crates/binstalk-downloader/src/utils.rs +++ b/crates/binstalk-downloader/src/utils.rs @@ -100,9 +100,7 @@ where async fn inner(handle: task::JoinHandle>) -> io::Result { match handle.await { Ok(res) => res, - Err(err) => Err(io::Error::other( - format!("background task failed: {err}"), - )), + Err(err) => Err(io::Error::other(format!("background task failed: {err}"))), } }