Skip to content

Commit 0cd717c

Browse files
lmeyerovclaude
andcommitted
style(gfql/index): split E702 semicolon in test _sig helper (newer ruff)
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 13cdbc6 commit 0cd717c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

graphistry/tests/compute/gfql/index/test_index.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ def _sig(g):
5353
def topd(df):
5454
mod = type(df).__module__
5555
return df.to_pandas() if ("cudf" in mod or "polars" in mod) else df
56-
nn = topd(g._nodes); ee = topd(g._edges)
56+
nn = topd(g._nodes)
57+
ee = topd(g._edges)
5758
nodes = sorted(nn["id"].tolist())
5859
edges = sorted(map(tuple, ee[["src", "dst"]].itertuples(index=False, name=None)))
5960
return nodes, edges

0 commit comments

Comments
 (0)