I use Visual Studio Code to write Python code with Pylint.
When I press Ctrl + S (save), the editor wraps a long line into multiple short lines. How
Autopep8 requires --aggressive in order to recommend non-whitespace changes:
--aggressive
"python.linting.pylintArgs": ["--max-line-length", "120", "--aggressive"]
This will wrap the long lines for you.