Skip to content

Commit

Permalink
remove unnecessary mut
Browse files Browse the repository at this point in the history
  • Loading branch information
ctb committed Sep 7, 2023
1 parent 3da59bf commit fe9c198
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1818,7 +1818,7 @@ fn manysketch<P: AsRef<Path> + Sync>(
while let Some(record_result) = parser.next() {
match record_result {
Ok(record) => {
for mut sig in &mut sigs {
for sig in &mut sigs {
if moltype == "protein" {
sig.add_protein(&record.seq()).unwrap();
} else {
Expand Down

0 comments on commit fe9c198

Please sign in to comment.