Skip to content

Commit

Permalink
Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherRabotin committed Jul 4, 2024
1 parent 4d2cf73 commit 779567a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/od/process/export.rs
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ where

for (estimate, residual) in self.estimates.iter().zip(self.residuals.iter()) {
if estimate.epoch() >= start && estimate.epoch() <= end {
estimates.push(estimate.clone());
estimates.push(*estimate);
residuals.push(residual.clone());
}
}
Expand Down

0 comments on commit 779567a

Please sign in to comment.