Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Mikusa <[email protected]>
  • Loading branch information
dmikusa committed Nov 21, 2022
1 parent 916f2fd commit 6a9e4cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ impl Parser {
)
.group(
ArgGroup::new("TYPES")
.args(&["DOCKER", "PACK"])
.args(["DOCKER", "PACK"])
.multiple(false)
.required(true)
)
Expand All @@ -331,7 +331,7 @@ impl Parser {
}
}

impl<'a> Default for Parser {
impl Default for Parser {
fn default() -> Self {
Self::new()
}
Expand Down

0 comments on commit 6a9e4cf

Please sign in to comment.