[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

@ -1,4 +1,4 @@
use chessfriend_position::{fen::FromFenStr, perft::Perft, Position};
use chessfriend_position::{Position, fen::FromFenStr, perft::Perft};
use clap::Parser;
#[derive(Parser, Debug)]