diff --git a/src/main.rs b/src/main.rs index 453b39d..a4aed2f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -3,8 +3,8 @@ use clap::{Parser, Subcommand}; use forgejo_api::Auth::Token; use forgejo_api::Forgejo; use forgejo_api::structs::CreateReleaseOption; -use url::Url; use std::io; +use url::Url; pub mod config; @@ -70,7 +70,9 @@ async fn handle_new_release( if target.is_none() { println!("Target not provided for creating a release."); - println!("Please confirm by typing 'yes' that you want to create automatically with the latest commit."); + println!( + "Please confirm by typing 'yes' that you want to create automatically with the latest commit." + ); let mut input = String::new(); io::stdin()