Skip to content

Commit 213708e

Browse files
committed
Post-merge fixes
1 parent 3729186 commit 213708e

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

stubs/networkx/networkx/algorithms/bipartite/matrix.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from _typeshed import Incomplete
2-
from collections.abc import Collection
2+
from collections.abc import Collection, Iterable
33

44
from networkx.classes.graph import Graph, _Node
55
from networkx.utils.backends import _dispatchable

stubs/networkx/networkx/algorithms/isomorphism/ismags.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ class ISMAGS:
2626
def __init__(self, graph: Graph[_Node], subgraph: Graph[_Node], node_match=None, edge_match=None, cache=None) -> None: ...
2727
def create_aligned_partitions(self, thing_matcher, sg_things, g_things): ...
2828
def find_isomorphisms(self, symmetry: bool = True) -> Generator[Incomplete, Incomplete, Incomplete]: ...
29+
def largest_common_subgraph(self, symmetry: bool = True) -> Generator[Incomplete, Incomplete, None]: ...
2930
def analyze_subgraph_symmetry(self) -> dict[Hashable, set[Hashable]]: ...
3031
def is_isomorphic(self, symmetry: bool = False) -> bool: ...
3132
def subgraph_is_isomorphic(self, symmetry: bool = False) -> bool: ...

0 commit comments

Comments
 (0)