Feneric / doxypypy

A more Pythonic version of doxypy, a Doxygen filter for Python.
GNU General Public License v2.0
149 stars 48 forks source link

Ignores paramters with empty description #60

Open buhtz opened 5 years ago

buhtz commented 5 years ago

def foobar(a, b, c): """ Description

Args:
    a:
    b:
    c: Description
"""

In that case only c is shown as a parameter (under sub-headline ''Parameters'').

One "usecase" of API documentation for me is to see which functions/methods/classes/paramters are there but doesn't have documentation.