summaryrefslogtreecommitdiff
path: root/doc/data/messages/m/missing-any-param-doc/good.py
blob: 6fa9622eeee90216c52d736f4ed178d49eb05610 (plain)
1
2
3
4
5
6
7
def puppies(head: str, tail: str):
    """Print puppy's details.

    :param head: description of the head of the dog
    :param tail: description of the tail of the dog
    """
    print(head, tail)