summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--algorithms.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/algorithms.py b/algorithms.py
index 06d768c..3c84cf2 100644
--- a/algorithms.py
+++ b/algorithms.py
@@ -49,7 +49,6 @@ def find_shortest_path(nodes, source_id, target_id):
continue
visited.add(walk_end)
for neighbour in nodes[walk_end].neighbours:
- print(neighbour)
if neighbour not in visited:
heapq.heappush(queue, (cand_dist + length_haversine(nodes[walk_end], neighbour), cand_path + (neighbour.id, )))
# no path found