mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
It should help to reduce visual noise from "Incorrect docstring" inspection keeping it enabled by default at the same time.
7 lines
161 B
Python
7 lines
161 B
Python
""" file's docstring """
|
|
def spam(ham, eggs): # <== PyCharm suggests to apply quickfix there
|
|
"""Docstring
|
|
@param ham:
|
|
@param eggs:
|
|
"""
|
|
pass |