Skip to content

Commit

Permalink
reorder imports
Browse files Browse the repository at this point in the history
  • Loading branch information
rnbguy committed Nov 16, 2023
1 parent 94430f0 commit 8641946
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions Code/itf/tests/votekeeper.rs
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 8641946

Please sign in to comment.