Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
booniepepper committed Mar 31, 2021
1 parent de42372 commit f67105f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,10 @@ pub fn get_action() -> Command {
Peek
};

let stack = matches.value_of("stack").unwrap_or(DEFAULT_STACK_NAME).to_owned();
let stack = matches
.value_of("stack")
.unwrap_or(DEFAULT_STACK_NAME)
.to_owned();
let quiet = matches.is_present("quiet");

let noise = if silent {
Expand Down

0 comments on commit f67105f

Please sign in to comment.