File tree Expand file tree Collapse file tree
stubs/networkx/networkx/algorithms/bipartite Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ from _typeshed import Incomplete
22from collections .abc import Callable , Iterable
33
44from networkx .classes .graph import Graph , _Node
5- from networkx .classes .multigraph import MultiGraph
65from networkx .utils .backends import _dispatchable
76
87__all__ = [
@@ -14,7 +13,7 @@ __all__ = [
1413]
1514
1615@_dispatchable
17- def projected_graph (B : Graph [_Node ], nodes : Iterable [Incomplete ], multigraph : bool = False ) -> MultiGraph [Incomplete ]: ...
16+ def projected_graph (B : Graph [_Node ], nodes : Iterable [Incomplete ], multigraph : bool = False ) -> Graph [Incomplete ]: ...
1817@_dispatchable
1918def weighted_projected_graph (B : Graph [_Node ], nodes : Iterable [Incomplete ], ratio : bool = False ) -> Graph [Incomplete ]: ...
2019@_dispatchable
You can’t perform that action at this time.
0 commit comments