fix: remove useless == true

This commit is contained in:
Mohammad Kanaan 2026-07-27 13:57:18 +03:00
parent f8181ee583
commit 3f1a5c5ef3

View file

@ -14,7 +14,7 @@ struct Cli {
fn main() -> ExitCode { fn main() -> ExitCode {
match run() { match run() {
Ok(matches) if matches.is_empty() == true => ExitCode::FAILURE, Ok(matches) if matches.is_empty() => ExitCode::FAILURE,
Ok(matches) => { Ok(matches) => {
println!("{}", matches); println!("{}", matches);
ExitCode::SUCCESS ExitCode::SUCCESS