Skip to content

Commit 4ba71ab

Browse files
committed
fix: docstring max length
1 parent b4982f9 commit 4ba71ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: graphs/greedy_best_first.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def __eq__(self, other):
8989

9090
class GreedyBestFirst:
9191
"""
92-
>>> grid = [[0, 0, 1, 0, 0], [0, 1, 0, 0, 0], [0, 0, 1, 0, 1], [1, 0, 0, 1, 1], [0, 0, 0, 0, 0]]
92+
>>> grid = TEST_GRIDS[2]
9393
>>> gbf = GreedyBestFirst(grid, (0, 0), (len(grid) - 1, len(grid[0]) - 1))
9494
>>> [x.pos for x in gbf.get_successors(gbf.start)]
9595
[(1, 0), (0, 1)]

0 commit comments

Comments
 (0)