Skip to content

Commit

Permalink
Fixed clippy lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellockyer committed Jan 4, 2021
1 parent 152dd7c commit 2e09b70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ fn main() {
)
.get_matches();

let execute_command = matches.value_of("execute").unwrap_or_else(|| "");
let execute_command = matches.value_of("execute").unwrap_or("");
let config_group = matches.value_of("group");
let config_name = matches.value_of("name");
let config_list = matches.is_present("list");
Expand Down

0 comments on commit 2e09b70

Please sign in to comment.