From ea578121d9df4299ca2c5e9f779b93998d9690b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20W=C3=B6lfer?= Date: Mon, 8 Apr 2019 02:01:16 +0200 Subject: [PATCH] Linting --- main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index b5bfbf6..9b22dd8 100644 --- a/main.py +++ b/main.py @@ -1,5 +1,5 @@ """Main module""" -from typing import List, Union, Tuple, Iterator, Optional +from typing import List, Union, Tuple, Iterator import enum from dataclasses import dataclass @@ -154,6 +154,7 @@ class Board: def possible_goal_move_actions(self) -> Iterator[MoveAction]: """Enumerates all possible moves from anywhere to the goal""" + #TODO