Skip to content

Commit 14f879b

Browse files
committed
clippy
Signed-off-by: Alexander Droste <[email protected]>
1 parent ec84a5e commit 14f879b

File tree

1 file changed

+0
-1
lines changed
  • vortex-array/src/arrays/list/compute

1 file changed

+0
-1
lines changed

vortex-array/src/arrays/list/compute/take.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ use crate::vtable::ValidityHelper;
3434
/// that lists are stored contiguously and in-order (`offset[i+1] >= offset[i]`). Taking
3535
/// non-contiguous indices would violate this requirement.
3636
impl TakeKernel for ListVTable {
37-
#[expect(clippy::cognitive_complexity)]
3837
fn take(&self, array: &ListArray, indices: &dyn Array) -> VortexResult<ArrayRef> {
3938
let indices = indices.to_primitive();
4039
let offsets = array.offsets().to_primitive();

0 commit comments

Comments
 (0)