Skip to content

Commit 698be79

Browse files
committed
fix linting
1 parent 1b2501b commit 698be79

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

torch_sparse/matmul.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,13 +100,13 @@ def spspmm(src: SparseTensor, other: SparseTensor,
100100

101101

102102
@torch.jit._overload # noqa: F811
103-
def matmul(src, other, reduce):
103+
def matmul(src, other, reduce): # noqa: F811
104104
# type: (SparseTensor, torch.Tensor, str) -> torch.Tensor
105105
pass
106106

107107

108108
@torch.jit._overload # noqa: F811
109-
def matmul(src, other, reduce):
109+
def matmul(src, other, reduce): # noqa: F811
110110
# type: (SparseTensor, SparseTensor, str) -> SparseTensor
111111
pass
112112

0 commit comments

Comments
 (0)