Skip to content

Commit e6914df

Browse files
committed
multigraph -> graph
1 parent f843553 commit e6914df

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

stubs/networkx/networkx/algorithms/bipartite/projection.pyi

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ from _typeshed import Incomplete
22
from collections.abc import Callable, Iterable
33

44
from networkx.classes.graph import Graph, _Node
5-
from networkx.classes.multigraph import MultiGraph
65
from 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
1918
def weighted_projected_graph(B: Graph[_Node], nodes: Iterable[Incomplete], ratio: bool = False) -> Graph[Incomplete]: ...
2019
@_dispatchable

0 commit comments

Comments
 (0)