Skip to content

Commit 97630ad

Browse files
authored
Apply suggestions from code review
1 parent 74663b2 commit 97630ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pydatastructs/graphs/algorithms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -945,7 +945,7 @@ def _johnson_adjacency_list(graph: Graph):
945945
else:
946946
all_distances[u][v] = float('inf')
947947

948-
return (all_distances,all_next_vertex)
948+
return (all_distances, all_next_vertex)
949949

950950
def topological_sort(graph: Graph, algorithm: str,
951951
**kwargs) -> list:

0 commit comments

Comments
 (0)