Skip to content

Commit 9b0759b

Browse files
committed
fix flake error
1 parent 90c0c4b commit 9b0759b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

torch_cluster/fps.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55

66

77
@torch.jit._overload # noqa
8-
def fps(src, batch=None, ratio=None, random_start=True):
8+
def fps(src, batch=None, ratio=None, random_start=True): # noqa
99
# type: (Tensor, Optional[Tensor], Optional[float], bool) -> Tensor
1010
pass
1111

1212

1313
@torch.jit._overload # noqa
14-
def fps(src, batch=None, ratio=None, random_start=True):
14+
def fps(src, batch=None, ratio=None, random_start=True): # noqa
1515
# type: (Tensor, Optional[Tensor], Optional[Tensor], bool) -> Tensor
1616
pass
1717

0 commit comments

Comments
 (0)