markbaas / atom-python-autopep8

MIT License
9 stars 6 forks source link

Does not comply with pep8 Whitespace in Expressions and Statements #8

Closed sbienkow closed 7 years ago

sbienkow commented 7 years ago

It converts this:

x = x*2 - 1
hypot2 = x*x + y*y
c = (a+b) * (a-b)

to this

x = x * 2 - 1
hypot2 = x * x + y * y
c = (a + b) * (a - b)

which is marked to not to do this in PEP8. Source

EDIT: Sorry was supposed to be in autopep8 issue tracker