Enable check for E226

* E226 missing whitespace around arithmetic operator

Change-Id: Iee5f6a952d9b12c6c8a4a79ef656fc7f94170776
This commit is contained in:
Christian Berendt 2014-07-21 08:09:38 +02:00
parent 63a6d6229b
commit 500f1e5dca
2 changed files with 2 additions and 2 deletions

View File

@ -226,7 +226,7 @@ class TestSendReceive(test_utils.BaseTestCase):
msgs.append(received)
# reply in reverse, except reply to the first guy second from last
order = list(range(len(senders)-1, -1, -1))
order = list(range(len(senders) - 1, -1, -1))
if len(order) > 1:
order[-1], order[-2] = order[-2], order[-1]

View File

@ -25,7 +25,7 @@ commands = python setup.py build_sphinx
[flake8]
show-source = True
ignore = E226,E241,E265,E714,H237,H402,H405,H904
ignore = E241,E265,E714,H237,H402,H405,H904
exclude = .tox,dist,doc,*.egg,build,__init__.py
builtins = _