Fix rustfmt check (#23296)

This commit is contained in:
Justin Starry
2022-02-23 16:38:53 +08:00
committed by GitHub
parent 6872fc79ba
commit d0e85c293f
4 changed files with 10 additions and 13 deletions

View File

@ -1,10 +1,11 @@
use core::fmt;
use enum_iterator::IntoEnumIterator;
use std::ops::{Index, IndexMut};
use {
core::fmt,
enum_iterator::IntoEnumIterator,
solana_sdk::{pubkey::Pubkey, saturating_add_assign},
std::collections::HashMap,
std::{
collections::HashMap,
ops::{Index, IndexMut},
},
};
#[derive(Default, Debug, PartialEq)]