Skip to content

Commit

Permalink
chore: satify clippy
Browse files Browse the repository at this point in the history
remove dud enumerate call
  • Loading branch information
Mause committed Dec 30, 2023
1 parent 0bf78bc commit 6c0e413
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vtab/excel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ impl VTab for ExcelVTab {
for data in rows.by_ref() {
// find the first row with no empty cell
let mut found = true;
for (_, cell) in data.iter().enumerate() {
for cell in data.iter() {
match cell {
DataType::Error(_) | DataType::Empty => {
found = false;
Expand Down

0 comments on commit 6c0e413

Please sign in to comment.