From 882f6e828f0200f061546207e0d941deb54c78e4 Mon Sep 17 00:00:00 2001 From: Luc Rubio Date: Fri, 6 Dec 2024 22:41:23 +0100 Subject: [PATCH] AoC2024.6 remove unused import --- aoc2024/src/day06/python/solution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aoc2024/src/day06/python/solution.py b/aoc2024/src/day06/python/solution.py index fcaf826..0f9c6c2 100644 --- a/aoc2024/src/day06/python/solution.py +++ b/aoc2024/src/day06/python/solution.py @@ -11,7 +11,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -from typing import Sequence, Union +from typing import Sequence type Position = tuple[int, int] type Direction = tuple[int, int]