Django's new URLconfig style allows us to no longer ignore PEP8s error

E128
This commit is contained in:
Raphael Michel
2015-03-13 00:07:14 +01:00
parent 97f5e4a2f1
commit 25fff77be5
3 changed files with 5 additions and 9 deletions

View File

@@ -7,7 +7,7 @@ install:
- pip install -q -r src/requirements.txt
before_script:
- cd src
- flake8 --ignore=E123,E128,F403,F401,N802,C901,W503 .
- flake8 --ignore=E123,F403,F401,N802,C901,W503 .
- python manage.py check
- python manage.py validate
script: