diff options
author | IWASE Yusuke <iwase.yusuke0@gmail.com> | 2018-06-13 15:57:30 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2018-06-20 12:04:46 +0900 |
commit | 56aff9adf393bf02058e8e0a571dd3054e98ac0a (patch) | |
tree | ed7e29c34a2d5072989e59900d3e6e80a8790266 | |
parent | db7338b8dbc7e92415d0674c0345b50550027b40 (diff) |
pycodestyle: Ignore W504
Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r-- | tox.ini | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -52,14 +52,15 @@ commands = [pycodestyle] exclude = pbr-*,.venv,.tox,.git,doc,dist,tools,vcsversion.py,.pyc,ryu/contrib -# W503: line break occurred before a binary operator +# W503: line break before binary operator +# W504: line break after binary operator # E116: unexpected indentation (comment) # E402: module level import not at top of file # E501: line too long (>79 characters) # E722: do not use bare except, specify exception instead # E731: do not assign a lambda expression, use a def # E741: do not use variables named 'l', 'O', or 'I' -ignore = W503,E116,E402,E501,E722,E731,E741 +ignore = W503,W504,E116,E402,E501,E722,E731,E741 [pep8] exclude = pbr-*,.venv,.tox,.git,doc,dist,tools,vcsversion.py,.pyc,ryu/contrib |