Closed
Description
Python Code
if (True #
and True
and True):
print(1)
Command Line and Configuration
Command Line
$ autopep8 -d --select=W503 junk.py
--- original/junk.py
+++ fixed/junk.py
@@ -1,4 +1,4 @@
-if (True #
- and True
- and True):
+if (True # and
+ True and
+ True):
print(1)
Your Environment
- Python version: Python 3.6.8 :: Anaconda, Inc.
- autopep8 version: autopep8 1.5a1 (pycodestyle: 2.5.0)
- Platform: macOSX
Metadata
Metadata
Assignees
Projects
Relationships
Development
No branches or pull requests
Activity
fix w503 sepecial case (for #503)
hhatto commentedon Dec 16, 2019
this is fix in #511 .
I plan release to version 1.5.
taldcroft commentedon Dec 17, 2019
Thanks! 🥇