From 1f74315b938478728f226110b8bc71dbb9e98006 Mon Sep 17 00:00:00 2001 From: Christopher Schwan Date: Tue, 23 Apr 2024 13:41:24 +0200 Subject: [PATCH] Group `use` statements together --- pineappl/src/packed_array.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pineappl/src/packed_array.rs b/pineappl/src/packed_array.rs index e15a6761..d1d4ed68 100644 --- a/pineappl/src/packed_array.rs +++ b/pineappl/src/packed_array.rs @@ -1,10 +1,9 @@ //! Provides the [`PackedArray`] struct. -use std::ops::{Index, IndexMut, MulAssign}; -use std::{mem, vec}; - use ndarray::ArrayView3; use serde::{Deserialize, Serialize}; +use std::mem; +use std::ops::{Index, IndexMut, MulAssign}; /// `D`-dimensional array similar to [`ndarray::ArrayBase`], except that `T::default()` is not /// stored to save space. Instead, adjacent non-default elements are grouped together and the index