Skip to content

Commit

Permalink
[networkx] Fix argument type of node_connected_component (#13612)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyllb authored Mar 11, 2025
1 parent 2e76963 commit 1a9eef4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ def number_connected_components(G: Graph[_Node]): ...
@_dispatchable
def is_connected(G: Graph[_Node]): ...
@_dispatchable
def node_connected_component(G: Graph[_Node], n: str): ...
def node_connected_component(G: Graph[_Node], n: _Node): ...

0 comments on commit 1a9eef4

Please sign in to comment.