Skip to content

Commit

Permalink
clippy suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
vbauerster committed Nov 12, 2022
1 parent 002e80d commit e1e0ba3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/kamp/argv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -169,15 +169,15 @@ pub(crate) struct RegisterName {
}

/// shell command
#[derive(FromArgs, PartialEq, Debug)]
#[derive(FromArgs, PartialEq, Eq, Debug)]
#[argh(subcommand, name = "sh")]
pub(crate) struct ShellCmdName {
/// shell command
#[argh(positional, arg_name = "command")]
pub name: String,
}

#[derive(PartialEq, Debug)]
#[derive(PartialEq, Eq, Debug)]
pub struct KeyValue {
pub key: String,
pub value: String,
Expand Down

0 comments on commit e1e0ba3

Please sign in to comment.