Skip to content

Commit f8b8d9e

Browse files
committed
update
1 parent 471dc5a commit f8b8d9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

torch_geometric/data/data.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -846,7 +846,7 @@ def adj_type_to_edge_tensor_type(layout: EdgeLayout,
846846
rowptr, col, _ = edge_index.csr()
847847
return (rowptr, col)
848848
else:
849-
# CSC is just adj_t.csr()
849+
# CSC is just adj_t.csr():
850850
colptr, row, _ = edge_index.csr()
851851
return (row, colptr)
852852

0 commit comments

Comments
 (0)