From 8641946f5ad9858c6a8429b76975b4be767ec67c Mon Sep 17 00:00:00 2001 From: Ranadeep Biswas Date: Thu, 16 Nov 2023 13:17:25 +0100 Subject: [PATCH] reorder imports --- Code/itf/tests/votekeeper.rs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Code/itf/tests/votekeeper.rs b/Code/itf/tests/votekeeper.rs index 2621e5d39..565d62681 100644 --- a/Code/itf/tests/votekeeper.rs +++ b/Code/itf/tests/votekeeper.rs @@ -1,18 +1,17 @@ use std::collections::HashMap; use std::path::PathBuf; -use itf::Itf; use rand::rngs::StdRng; use rand::SeedableRng; use malachite_common::Round; use malachite_itf::votekeeper::State as ItfState; use malachite_itf::votekeeper::Value as ItfValue; -use malachite_test::ValueId; -use malachite_test::{Address, PrivateKey, TestContext, Vote}; -use malachite_vote::keeper::Message; -use malachite_vote::{keeper::VoteKeeper, Weight}; +use malachite_test::{Address, PrivateKey, TestContext, ValueId, Vote}; +use malachite_vote::keeper::{Message, VoteKeeper}; +use malachite_vote::Weight; +use itf::Itf; use rstest::{fixture, rstest}; // TODO: move to itf-rs repo