[explorer, moves, perft] A few rustfmt changes that reorder imports

This commit is contained in:
Eryn Wells 2025-06-16 13:49:22 -07:00
parent bd112efdf3
commit 45037d6fc1
3 changed files with 7 additions and 5 deletions

View file

@ -242,7 +242,9 @@ impl MoveType {
#[cfg(test)]
mod tests {
use super::*;
use crate::{assert_move_list, assert_move_list_contains, assert_move_list_does_not_contain, ply, Move};
use crate::{
assert_move_list, assert_move_list_contains, assert_move_list_does_not_contain, ply, Move,
};
use chessfriend_board::{fen::FromFenStr, test_board};
use chessfriend_core::{Color, Square};
use std::collections::HashSet;