pylint-errors

W9011 (missing-return-doc)

:x: Problematic code:

def foo(n):
    """A dummy string.

    :rtype: int
    """

    return n ** 10

:heavy_check_mark: Correct code:

def foo(n):
    """A dummy string.

    :returns: a result.
    :rtype: int
    """

    return n ** 10

Rationale:

Please add documentation about what this method returns.