autopep8
autopep8 copied to clipboard
Does not add whitespace around ** operator
Before autopep8 (aggressive mode)
1+2-3*4/5//6%7**8
After:
1 + 2 - 3 * 4 / 5 // 6 % 7**8
Expected outcome:
1 + 2 - 3 * 4 / 5 // 6 % 7 ** 8
python v3.6.4 pycodestyle v2.3.1 autopep8 v1.3.4
There is an interesting thread in SO discussing the issue.