Skip to content

Commit 60c5294

Browse files
authored
fix import in 03_graphs.md
import DijkstraFinder instead of AStarFinder
1 parent a99f3c2 commit 60c5294

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/03_graphs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The default is to plan a path from one node of a grid to another but you can use
55
from pathfinding.core.diagonal_movement import DiagonalMovement
66
from pathfinding.core.graph import Graph
77
from pathfinding.core.node import Node
8-
from pathfinding.finder.a_star import AStarFinder
8+
from pathfinding.finder.dijkstra import DijkstraFinder
99

1010
# based on the animation at [Wikipedia about Dijkstra's algorithm](https://en.wikipedia.org/wiki/Dijkstra%27s_algorithm#/media/File:Dijkstra_Animation.gif)
1111

0 commit comments

Comments
 (0)