Add a doc string and a terminal newline

This commit is contained in:
Eryn Wells 2022-05-12 20:40:40 -07:00
parent ce63c825b0
commit ee915bd7c1
2 changed files with 9 additions and 1 deletions

View file

@ -118,4 +118,4 @@ class HostileEnemy(AI):
path: List[List[int]] = pathfinder.path_to(tuple(point))[1:].tolist()
# Convert from List[List[int]] to List[Tuple[int, int]].
return [Point(index[0], index[1]) for index in path]
return [Point(index[0], index[1]) for index in path]