You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix G.subgraph(edges=generator) deleting all edges
The edges generator was looped over twice. If the generator is a
generator expression like `((0, v) for v in range(5))` it becomes empty
after the first loop, causing `edges_to_keep_unlabeled` to be empty.
0 commit comments