Skip to content

Commit 210291f

Browse files
committed
resolved errors
1 parent 0b0555e commit 210291f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Diff for: docs/source/pydatastructs/graphs/algorithms.rst

+3-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,6 @@ Algorithms
2121

2222
.. autofunction:: pydatastructs.topological_sort_parallel
2323

24-
.. autofunction:: pydatastructs.find_bridges
24+
.. autofunction:: pydatastructs.find_bridges
25+
26+
.. autofunction:: pydatastructs.bfs

Diff for: pydatastructs/graphs/__init__.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
__all__ = []
1+
__all__ = [
2+
'bfs'
3+
]
24

35
from . import (
46
graph,

0 commit comments

Comments
 (0)