mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-04 21:47:40 +03:00
Fix clippy warning
This commit is contained in:
parent
e452b8d6b5
commit
47822d8d6c
1 changed files with 1 additions and 1 deletions
|
@ -212,7 +212,7 @@ impl Device {
|
|||
// Waiting on fastrand 2.0.0 for the `choose` function
|
||||
// https://github.com/smol-rs/fastrand/pull/59/
|
||||
fn choose<T: Copy>(list: &[T]) -> T {
|
||||
*fastrand::choose_multiple(list.into_iter(), 1)[0]
|
||||
*fastrand::choose_multiple(list.iter(), 1)[0]
|
||||
}
|
||||
|
||||
#[tokio::test(flavor = "multi_thread", worker_threads = 1)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue