summaryrefslogtreecommitdiff
path: root/doc/data/messages/u/useless-param-doc/bad.py
blob: f6c289d361935b7ff84e276277eb7b65c5b32f17 (plain)
1
2
3
4
5
6
7
def say_hello(_new: str) -> str:  # [useless-param-doc]
    """say hello!

    :param _new:
    :return: comment
    """
    return "hello"