Skip to content

Commit

Permalink
removed defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
yerlaser committed Nov 5, 2023
1 parent 8a3e244 commit 6ced8f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions converter_rayon/src/utils/argument_parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ use clap::Parser;
#[derive(Parser, Debug)]
#[command(author, version, about, long_about=None)]
pub struct CliArgs {
#[arg(short, long, default_value_t = String::from("conversion_table.csv"))]
#[arg(short, long)]
pub table: String,

#[arg(short, long, default_value_t = String::from("lat-"))]
#[arg(short, long, default_value_t = String::new())]
pub prefix: String,

#[arg(short, long, default_value_t = String::new())]
Expand Down

0 comments on commit 6ced8f6

Please sign in to comment.