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 {
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