Skip to content
This repository has been archived by the owner on May 16, 2024. It is now read-only.

Commit

Permalink
Merge pull request #594 from acsone/master-pep8-compliant
Browse files Browse the repository at this point in the history
[REF] travis_run_flake8.cfg: disable E203 whitespace before ':'
  • Loading branch information
moylop260 authored Apr 4, 2019
2 parents 642e120 + d291bf9 commit 310d1d1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion travis/cfg/travis_run_flake8.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# F811 is legal in odoo 8 when we implement 2 interfaces for a method
# F999 pylint support this case with expected tests
# W503 changed by W504 and OCA prefers allow both
ignore = E123,E133,E226,E241,E242,F811,F601,W503,W504
# E203: whitespace before ':' (black behaviour and not pep8 compliant)
ignore = E123,E133,E226,E241,E242,F811,F601,W503,W504,E203
max-line-length = 79
exclude = __unported__,__init__.py,examples

0 comments on commit 310d1d1

Please sign in to comment.