From d5a07374fef3b906b96f86574ace04cb44e8e9e3 Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Sat, 4 Dec 2021 21:47:34 -0800 Subject: [PATCH] Cleanup unused use statement. --- 2021/src/day2.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2021/src/day2.rs b/2021/src/day2.rs index 54769da..756009a 100644 --- a/2021/src/day2.rs +++ b/2021/src/day2.rs @@ -53,7 +53,7 @@ //! Using this new interpretation of the commands, calculate the horizontal position and depth you would have after following the planned course. What do you get if you multiply your final horizontal position by your final depth? use anyhow::Result; -use aoc_runner_derive::{aoc, aoc_generator}; +use aoc_runner_derive::aoc; #[aoc(day2, part1)] fn part1(input: &str) -> Result {