Skip to content

Commit

Permalink
fix(commands): fmt fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ychiguer committed Jun 27, 2022
1 parent 7cc719e commit 5c98e36
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/builder/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,9 @@ impl<'help> App<'help> {
Ok(_) => {
c.to_owned().to_string()
},
Err(e) => {panic!("{}",e.to_string())},
Err(e) => {
panic!("{}",e.to_string())
},
}

}
Expand All @@ -753,7 +755,9 @@ impl<'help> App<'help> {
Ok(_) => {
c.to_owned().to_string()
},
Err(e) => {panic!("{}",e.to_string())},
Err(e) => {
panic!("{}",e.to_string())
},
}

}
Expand Down

0 comments on commit 5c98e36

Please sign in to comment.