chore: fmt

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-08-01 17:12:50 +02:00
parent aeaffb775e
commit af5d0f4af5
3 changed files with 5 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
use clap::Subcommand;
use cuddle_please_frontend::PleaseConfig;
use cuddle_please_misc::{get_most_significant_version, DynRemoteGitClient, DynUi, GiteaClient};
use cuddle_please_misc::{get_most_significant_version, DynRemoteGitClient, DynUi};
#[derive(Subcommand, Debug, Clone)]
pub enum GiteaCommand {
@@ -39,7 +39,7 @@ impl GiteaCommandHandler {
}
}
pub fn execute(&self, command: &GiteaCommand, token: &str) -> anyhow::Result<()> {
pub fn execute(&self, command: &GiteaCommand, _token: &str) -> anyhow::Result<()> {
let owner = self.config.get_owner();
let repository = self.config.get_repository();