Skip to content

Commit

Permalink
ledger: Apply clippy suggestion.
Browse files Browse the repository at this point in the history
  • Loading branch information
ceyhunsen committed Sep 4, 2024
1 parent 195b7e1 commit 02aaaf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ledger/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ impl Ledger {
.output()
.expect("failed to execute process");

ret.stdout.len() != 0
!ret.stdout.is_empty()
};

let database = Connection::open(path.clone()).unwrap();
Expand Down

0 comments on commit 02aaaf5

Please sign in to comment.