PyCharm 2018.3 has an option to change your docstring format under File > Settings > Tools > Python Integrated Tools > Docstring Format
After selecting 'Google', I write code like:
def my_func(a, b):
"""
Do something with a and b
Args:
a: first arg
b: second arg
Returns:
something
"""
pass
I want the summary i.e. "Do something with a and b" in addition to the arguments to show up in the quick documentation window but all I get is this
Am I doing something wrong or is this a bug in PyCharm?