You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
autopep8 outputs some warnings and verbose messages to stdout instead of stderr.
This leads to problems when someone (such as vscode extension vscode-autopep8) wants to format not using --in-place flag since there's no distinction between output code and processing messages and thus writes the message into the new code..
See: microsoft/vscode-autopep8#201
Command Line and Configuration
~/.config/pycodestyle
[pycodestyle]max-complexity = 20
Command Line
$ python -m autopep8 -i file.py -vvv 2>/dev/nullread config path: /home/xyz/.config/pycodestyle unknown option 'max-complexity' ignored
$ python -m autopep8 -i file.py -vvv 1>/dev/null[file:file.py]---> 10 issue(s) to fix {'E221': {13, 14, 15, 16, 17, 18, 19}, 'E501': {72, 122, 100}}---> Not fixing E501 on line 72---> Not fixing E501 on line 100---> Not fixing E501 on line 122
Your Environment
Python version: 2.0.4
autopep8 version: 2.11.1
The text was updated successfully, but these errors were encountered:
autopep8 outputs some warnings and verbose messages to stdout instead of stderr.
This leads to problems when someone (such as vscode extension vscode-autopep8) wants to format not using --in-place flag since there's no distinction between output code and processing messages and thus writes the message into the new code..
See: microsoft/vscode-autopep8#201
Command Line and Configuration
~/.config/pycodestyle
Command Line
Your Environment
The text was updated successfully, but these errors were encountered: