fix: update formatting
All checks were successful
/ check (push) Successful in 1m48s
/ cargo fmt (push) Successful in 1m36s

This commit is contained in:
Guilhem Lavaux 2025-06-16 14:41:07 +02:00
parent 616dab4669
commit e460a26c0b

View file

@ -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()