We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Graph[Hashable]
Several functions have arguments annotated as Graph[Hashable] or similar (ex. nx.number_of_selfloops).
nx.number_of_selfloops
As Graph is invariant, we encounter false-positive type errors when trying to assign concrete types (say Graph[int]).
Graph
Graph[int]