Skip to content

Commit 5e4608b

Browse files
authored
Update algorithms.py
1 parent 456eb66 commit 5e4608b

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
@@ -682,7 +682,7 @@ def _depth_first_search_adjacency_list(
682682

683683
_depth_first_search_adjacency_matrix = _depth_first_search_adjacency_list
684684

685-
def shortest_paths(graph: Graph, algorithm: str, source: str, target: str="", **kwargs) -> tuple:
685+
def shortest_paths(graph: Graph, algorithm: str, source: str, target: str = "", **kwargs) -> tuple:
686686
"""
687687
Finds shortest paths in the given graph from a given source.
688688

0 commit comments

Comments
 (0)