Commit 698be79e authored by rusty1s's avatar rusty1s
Browse files

fix linting

parent 1b2501be
...@@ -100,13 +100,13 @@ def spspmm(src: SparseTensor, other: SparseTensor, ...@@ -100,13 +100,13 @@ def spspmm(src: SparseTensor, other: SparseTensor,
@torch.jit._overload # noqa: F811 @torch.jit._overload # noqa: F811
def matmul(src, other, reduce): def matmul(src, other, reduce): # noqa: F811
# type: (SparseTensor, torch.Tensor, str) -> torch.Tensor # type: (SparseTensor, torch.Tensor, str) -> torch.Tensor
pass pass
@torch.jit._overload # noqa: F811 @torch.jit._overload # noqa: F811
def matmul(src, other, reduce): def matmul(src, other, reduce): # noqa: F811
# type: (SparseTensor, SparseTensor, str) -> SparseTensor # type: (SparseTensor, SparseTensor, str) -> SparseTensor
pass pass
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment