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 {
|
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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue