By default this package does not work on Windows. It doesn't fill the docstring, instead it destroys the docstring, because there are no python3 executable on Windows.
My simple fix is: use py -3 instead of python3 on Windows, which is the correct way as introduced in the official documentation.
Moreover, if the user have no Python installed, python-docstring-fill destroys the docstring, too. This is very rare as the user is already editing some Python files.
By default this package does not work on Windows. It doesn't fill the docstring, instead it destroys the docstring, because there are no
python3
executable on Windows.My simple fix is: use
py -3
instead ofpython3
on Windows, which is the correct way as introduced in the official documentation.Moreover, if the user have no Python installed,
python-docstring-fill
destroys the docstring, too. This is very rare as the user is already editing some Python files.