Advertisement
TakesxiSximada

pep8 E123

Jun 2nd, 2015
301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. $ cat test.py
  2. test = (
  3. 1,
  4. )
  5. $ pep8 test.py
  6. $ pep8 --ignore E111 test.py
  7. test.py:3:5: E123 closing bracket does not match indentation of opening bracket's line
  8. $ pep8 --version
  9. 1.6.3a0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement