From f4df165fd504c8a7d78a9323b369e452388ea96c Mon Sep 17 00:00:00 2001 From: ynqa Date: Thu, 27 Mar 2025 00:50:30 +0900 Subject: [PATCH] cargo-clippy --- src/main.rs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/main.rs b/src/main.rs index 1f0dddb..595f229 100644 --- a/src/main.rs +++ b/src/main.rs @@ -62,11 +62,7 @@ pub struct Args { /// reads from standard input. pub input: Option, - #[arg( - short = 'c', - long = "config", - help = "Path to the configuration file.", - )] + #[arg(short = 'c', long = "config", help = "Path to the configuration file.")] pub config_file: Option, } @@ -132,6 +128,7 @@ fn determine_config_file(config_path: Option) -> anyhow::Result