Skip to content

Commit 609d1f8

Browse files
committed
return type added
1 parent d536e0d commit 609d1f8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

torch_scatter/std.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ def scatter_std(src, index, dim=-1, out=None, dim_size=None, unbiased=True):
4343
unbiased (bool, optional): If set to :obj:`False`, then the standard-
4444
deviation will be calculated via the biased estimator.
4545
(default: :obj:`True`)
46+
47+
:rtype: :class:`Tensor`
4648
"""
4749
src, out, index, dim = gen(src, index, dim, out, dim_size, fill_value=0)
4850

0 commit comments

Comments
 (0)