From ee4703623b19d3e5db3e994ec7e686eef7dba30f Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Sat, 29 Jul 2023 19:46:23 +0200 Subject: [PATCH] chore(rs): format Signed-off-by: Matej Focko --- .common/rust/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.common/rust/src/main.rs b/.common/rust/src/main.rs index d8aa46b..a931f20 100644 --- a/.common/rust/src/main.rs +++ b/.common/rust/src/main.rs @@ -1,10 +1,10 @@ #![allow(unused_imports)] // region ‹use› +use self::input::*; use self::math::*; use self::output::*; -use self::input::*; -use std::cmp::{min, max}; +use std::cmp::{max, min}; use std::collections::HashMap; // endregion ‹use›