Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
orlp committed Jun 7, 2024
1 parent b88c185 commit 41dfd1d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/polars-ops/src/chunked_array/top_k.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,7 @@ where
let validity = first_n_valid_mask(non_null_count, out_len);

let arr = PrimitiveArray::from_vec(vec).with_validity_typed(validity);
let ret = ChunkedArray::with_chunk_like(ca, arr);
ret
ChunkedArray::with_chunk_like(ca, arr)
}

fn top_k_binary_impl(
Expand Down

0 comments on commit 41dfd1d

Please sign in to comment.