Skip to content

Commit 5716287

Browse files
committed
no cover
1 parent f869347 commit 5716287

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

torch_sparse/spspmm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def from_scipy(A):
6666
return index, value
6767

6868

69-
def lift(indexA, valueA, indexB, n):
69+
def lift(indexA, valueA, indexB, n): # pragma: no cover
7070
indexA = indexA[0] * n + indexA[1]
7171
indexB = indexB[0] * n + indexB[1]
7272

0 commit comments

Comments
 (0)