We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems autopep8 is ignoring spaces around operator (E226 and E225) if in format string. The diff for the following snippet is empty.
examples = [] for i, e in enumerate(examples): print(f"#### Question {i+1} ####") print(f"#### Question {i>1} ####")
[pycodestyle] max-line-length = 120 statistics = True show-pep8 = True show-source = True ignore = W391, W605, W503 [pep8] max-line-length = 120 show-pep8 = true statistics = true ignore = W391, W503 [flake8] max-line-length = 120 ignore = E203, E402, W503, W391 exclude = venv extend-select = B901, C401, C408, C409
Command Line
$ autopep8 experiments/test.py -d -v --select=E,W --ignore-local-config
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It seems autopep8 is ignoring spaces around operator (E226 and E225) if in format string. The diff for the following snippet is empty.
Python Code
Command Line and Configuration
Command Line
$ autopep8 experiments/test.py -d -v --select=E,W --ignore-local-config
Your Environment
The text was updated successfully, but these errors were encountered: