Skip to content

Commit

Permalink
Rm stray __doc__ comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
rossbar committed Sep 6, 2024
1 parent cfdea2d commit b7f370a
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions networkx/algorithms/isomorphism/isomorphvf2.py
Original file line number Diff line number Diff line change
Expand Up @@ -419,8 +419,6 @@ def subgraph_is_monomorphic(self):
except StopIteration:
return False

# subgraph_is_isomorphic.__doc__ += "\n" + subgraph.replace('\n','\n'+indent)

def subgraph_isomorphisms_iter(self):
"""Generator over isomorphisms between a subgraph of ``G1`` and ``G2``.
Expand Down Expand Up @@ -476,8 +474,6 @@ def subgraph_monomorphisms_iter(self):
self.initialize()
yield from self.match()

# subgraph_isomorphisms_iter.__doc__ += "\n" + subgraph.replace('\n','\n'+indent)

def syntactic_feasibility(self, G1_node, G2_node):
"""Returns True if adding (G1_node, G2_node) is syntactically feasible.
Expand Down

0 comments on commit b7f370a

Please sign in to comment.