From e460a26c0bbef69fe74d5c219c531dea052d12ff Mon Sep 17 00:00:00 2001 From: Guilhem Lavaux Date: Mon, 16 Jun 2025 14:41:07 +0200 Subject: [PATCH] fix: update formatting --- src/main.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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()