summaryrefslogtreecommitdiff
path: root/doc/data/messages/m/missing-any-param-doc/good.py
blob: 238ea1bce5a7030d3633d1db94f76914eea8ea4a (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)