Skip to content

Commit f5fd777

Browse files
committed
pay obeisance to clippy
1 parent 1a68965 commit f5fd777

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/writer/vegalite/layer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ fn aesthetic_varies_within_groups(
404404
}
405405

406406
// Slice the series for this group and check uniqueness
407-
let segment = series.slice(start as i64, (end - start) as usize);
407+
let segment = series.slice(start as i64, end - start);
408408
let n_unique = segment.n_unique().map_err(|e| {
409409
GgsqlError::InternalError(format!("Failed to count unique values: {}", e))
410410
})?;

0 commit comments

Comments
 (0)