PyCQA / docformatter

Formats docstrings to follow PEP 257
https://pypi.python.org/pypi/docformatter
MIT License
530 stars 61 forks source link

pydocstyle: D202 - Removes blank line after function docstring. #270

Open anonyknight opened 11 months ago

anonyknight commented 11 months ago

Issue Summary: pydocstyle: D202 / No blank lines allowed after function docstring

Example

def main():
    """Main function."""

    print_factorial(5)
    if factorial(10):
        launch_rocket()

Thanks.