dotfiles/vscode/.vscode/extensions/njpwerner.autodocstring-0.6.1/docs/sphinx.md
Errol Sancaktar ff17c17e23 vscode
2024-06-14 09:31:58 -06:00

382 B

Sphinx Docstring Format

def abc(a: int, c = [1,2]):
    """_summary_

    :param a: _description_
    :type a: int
    :param c: _description_, defaults to [1,2]
    :type c: list, optional
    :raises AssertionError: _description_
    :return: _description_
    :rtype: _type_
    """
    if a > 10:
        raise AssertionError("a is more than 10")

    return c