Compare commits

..

No commits in common. "7772545eb06e8a956410711cf4fd4b1e0622fabd" and "2a979cd98ff316034333d89e38c9d1b8c80d9ac3" have entirely different histories.

1 changed files with 1 additions and 2 deletions

View File

@ -16,7 +16,7 @@ use std::iter;
#[derive(Parser, Debug)] #[derive(Parser, Debug)]
#[command(version, about, long_about = None)] #[command(version, about, long_about = None)]
pub struct Args { pub struct Args {
#[arg(short = 'z', long)] #[arg(short, long)]
pub timezone: Vec<String>, pub timezone: Vec<String>,
#[arg(short, long)] #[arg(short, long)]
@ -32,7 +32,6 @@ pub struct Args {
#[arg(long)] #[arg(long)]
pub list: bool, pub list: bool,
#[arg(short, long)]
pub time: Option<String>, pub time: Option<String>,
} }