Skip to content

Commit

Permalink
fix import in 03_graphs.md
Browse files Browse the repository at this point in the history
import DijkstraFinder instead of AStarFinder
  • Loading branch information
brean authored Jun 26, 2024
1 parent a99f3c2 commit 60c5294
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/03_graphs.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The default is to plan a path from one node of a grid to another but you can use
from pathfinding.core.diagonal_movement import DiagonalMovement
from pathfinding.core.graph import Graph
from pathfinding.core.node import Node
from pathfinding.finder.a_star import AStarFinder
from pathfinding.finder.dijkstra import DijkstraFinder

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

Expand Down

0 comments on commit 60c5294

Please sign in to comment.