Files
openide/python/testData/inspections/DocstringParams2.py
T
Mikhail Golubev 32c7e52a24 PY-18010 Don't warn of missing parameters if none of them is mentioned in a docstring
It should help to reduce visual noise from "Incorrect docstring"
inspection keeping it enabled by default at the same time.
2015-12-17 13:43:22 +03:00

6 lines
223 B
Python

""" file's docstring """
def spam(<weak_warning descr="Missing parameter ham in docstring">ha<caret>m</weak_warning>, eggs): # <== PyCharm suggests to apply quickfix there
"""Docstring
@param eggs:
"""
pass