chore: clippy

This commit is contained in:
Vukašin Vojinović 2025-11-06 12:40:37 +01:00
parent 900dd88a70
commit d20dbadd02
2 changed files with 35 additions and 37 deletions

View file

@ -224,8 +224,8 @@ impl MouseReporter {
};
//Generate term codes
let x_iter = std::iter::repeat(button_no_x).take(lines_x.unsigned_abs() as _);
let y_iter = std::iter::repeat(button_no_y).take(lines_y.unsigned_abs() as _);
let x_iter = std::iter::repeat_n(button_no_x, lines_x.unsigned_abs() as _);
let y_iter = std::iter::repeat_n(button_no_y, lines_y.unsigned_abs() as _);
x_iter
.chain(y_iter)