From cb00b281667880ac3c9f4db832f50f6eced87957 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Wed, 12 Mar 2025 00:24:40 -0400 Subject: [PATCH] format import --- src/elo.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/elo.rs b/src/elo.rs index 24be500..3bde12d 100644 --- a/src/elo.rs +++ b/src/elo.rs @@ -1,5 +1,3 @@ -use std::num::NonZero; - use crate::{ agent::Agent, complexagent::ComplexAgent, @@ -14,6 +12,7 @@ use skillratings::{ elo::{elo, EloConfig, EloRating}, Outcomes, Rating, }; +use std::num::NonZero; #[allow(dead_code)] pub fn run() {