From 21e9aba95fc8c9021be0ebeff22fd027c77ab24a Mon Sep 17 00:00:00 2001 From: David GAILLETON Date: Fri, 3 Apr 2026 18:34:18 +0200 Subject: [PATCH] docstring to output file function --- src/AMazeIng.py | 1 + 1 file changed, 1 insertion(+) 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__())