Skip to content

doesn't work with argument type hinting #33

@EdsterG

Description

@EdsterG

Here's an example that breaks auto generated docstring templates:

def foo(bar: str):
    pass

the result is:

    """[summary]

    [description]
    :param bar: str: [description]
    :type bar: str: [type]
    """

it should at least parse the name correctly:

    """[summary]

    [description]
    :param bar: [description]
    :type bar: [type]
    """

and ideally it would auto file the type:

    """[summary]

    [description]
    :param bar: [description]
    :type bar: str
    """

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions