fix: remove useless == true
This commit is contained in:
parent
f8181ee583
commit
3f1a5c5ef3
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ struct Cli {
|
|||
|
||||
fn main() -> ExitCode {
|
||||
match run() {
|
||||
Ok(matches) if matches.is_empty() == true => ExitCode::FAILURE,
|
||||
Ok(matches) if matches.is_empty() => ExitCode::FAILURE,
|
||||
Ok(matches) => {
|
||||
println!("{}", matches);
|
||||
ExitCode::SUCCESS
|
||||
|
|
|
|||
Loading…
Reference in a new issue