Skip to content

Commit

Permalink
fix flake error
Browse files Browse the repository at this point in the history
  • Loading branch information
rusty1s committed Mar 1, 2021
1 parent 90c0c4b commit 9b0759b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions torch_cluster/fps.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@


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


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

Expand Down

0 comments on commit 9b0759b

Please sign in to comment.