From f7840f5eae9c95c3d127afc9e15c8c910ae845f0 Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Tue, 3 Jan 2023 22:14:49 +0100 Subject: [PATCH] day(02): reformat MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit have no clue what changed… Signed-off-by: Matej Focko --- src/bin/day02.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/bin/day02.rs b/src/bin/day02.rs index 479c8c5..c05a084 100644 --- a/src/bin/day02.rs +++ b/src/bin/day02.rs @@ -2,10 +2,7 @@ use std::str::FromStr; use aoc_2022::*; -use color_eyre::{ - eyre::eyre, - Report, -}; +use color_eyre::{eyre::eyre, Report}; use itertools::Itertools; type Input = Vec;