Skip to content

Commit

Permalink
clippy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bluegenes committed Dec 20, 2024
1 parent 7905ac2 commit e2f7b1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/src/signature.rs
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ impl SeqToHashes {
(2, 3)
};
if ksize < n {
return Err(SourmashError::InvalidSkipmerSize { ksize: ksize, n: n });
return Err(SourmashError::InvalidSkipmerSize { ksize, n});
}
let frames = (0..3)
.flat_map(|frame_number| vec![ReadingFrame::new_skipmer(seq, frame_number, m, n)])
Expand Down

0 comments on commit e2f7b1c

Please sign in to comment.