diff --git a/src/main.rs b/src/main.rs index 235f036..5da67cb 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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