From bcfc20caba12e70ca6db02ee5d53590c86be884e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Sat, 14 Jan 2023 16:26:26 +0100 Subject: [PATCH] Fix duplicate import --- tests/core/reshape.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/core/reshape.rs b/tests/core/reshape.rs index 0ad24bc6..3873667f 100644 --- a/tests/core/reshape.rs +++ b/tests/core/reshape.rs @@ -1,6 +1,6 @@ use na::{ - Const, DMatrix, DMatrixView, DMatrixViewMut, Dyn, Dyn, Matrix, MatrixView, MatrixViewMut, - SMatrix, SMatrixView, SMatrixViewMut, VecStorage, U3, U4, + Const, DMatrix, DMatrixView, DMatrixViewMut, Dyn, Matrix, MatrixView, MatrixViewMut, SMatrix, + SMatrixView, SMatrixViewMut, VecStorage, U3, U4, }; use nalgebra_macros::matrix; use simba::scalar::SupersetOf;