summaryrefslogtreecommitdiff
path: root/doc/data/messages/m/missing-param-doc/good.py
blob: b2885dd5857cd36f3c52d5efd7d51f463c4fa277 (plain)
1
2
3
4
5
6
def integer_sum(a: int, b: int):
    """Returns sum of two integers
    :param a: first integer
    :param b: second integer
    """
    return a + b