PyCQA / docformatter

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

[regression] removing whitespace below shebang #187

Closed jamesbraza closed 1 year ago

jamesbraza commented 1 year ago
#!/usr/bin/env python

"""a.py"""

docformatter==1.6.3 (also may possibly be 1.6.2 per https://github.com/PyCQA/docformatter/issues/186) is removing whitespace below a shebang.

> docformatter a.py leads to:

#!/usr/bin/env python
"""a.py"""

docformatter==1.5.1 didn't use to do that.