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