We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 188b099 commit b91d7daCopy full SHA for b91d7da
src/ssspx/transform.py
@@ -50,7 +50,7 @@ def constant_outdegree_transform(
50
remaining = edges
51
while len(remaining) > delta:
52
chunks.append(remaining[: delta - 1])
53
- remaining = remaining[delta - 1 :]
+ remaining = remaining[delta - 1:]
54
chunks.append(remaining) # last chunk size <= delta
55
clones = [next_id + i for i in range(len(chunks))]
56
mapping[u] = clones
0 commit comments