PyCQA / docformatter

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

Missing indentation as in example #278

Open bagustris opened 6 months ago

bagustris commented 6 months ago

I follow the example in the readme,

Intead of getting this,

def launch_rocket():
    """Launch the rocket.

    Go colonize space.
    """

I got this (no change) ,

def launch_rocket():
    """Launch
the
rocket. Go colonize space."""
 """

Command used: docformatter --in-place example.py