Skip to content

Commit

Permalink
refactor(lint): ignore lint to prevent MSRV bump
Browse files Browse the repository at this point in the history
  • Loading branch information
EdJoPaTo committed Jul 30, 2024
1 parent 8308aa6 commit 9c3ff71
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/interactive/details/graph/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ impl Graph {
let mut data = Vec::with_capacity(points.len());
let mut y_min = first.y;
let mut y_max = y_min;
#[allow(clippy::explicit_iter_loop)] // requires rustc 1.80 which is above the MSRV
for point in points.iter() {
y_min = y_min.min(point.y);
y_max = y_max.max(point.y);
Expand Down

0 comments on commit 9c3ff71

Please sign in to comment.