Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
rusty1s committed Jul 19, 2023
1 parent bb687ba commit 33b291b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions torch_geometric/utils/lexsort.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ def lexsort(
second-to-last key for the secondary sort order, and so on.
Args:
keys ([torch.Tensor]) The :math:`k` different columns to be sorted. The
last key is the primary sort key.
dim (int, optional) The dimension to sort along. (default: :obj:`-1`)
descending (bool, optional) Controls the sorting order (ascending or
keys ([torch.Tensor]): The :math:`k` different columns to be sorted.
The last key is the primary sort key.
dim (int, optional): The dimension to sort along. (default: :obj:`-1`)
descending (bool, optional): Controls the sorting order (ascending or
descending). (default: :obj:`False`)
"""
assert len(keys) >= 1
Expand Down

0 comments on commit 33b291b

Please sign in to comment.