diff --git a/src/AMazeIng.py b/src/AMazeIng.py index edcd009..0be35ff 100644 --- a/src/AMazeIng.py +++ b/src/AMazeIng.py @@ -67,6 +67,7 @@ class AMazeIng(BaseModel): return self.solver.solve(self.maze, self.height, self.width) def export_maze(self) -> None: + """Export maze, entry, exit and resolved path in output_file""" with open(self.output_file, "w") as file: file.write(self.__str__())