From 88ce069739652c5bf86e0e96b86ec845dd91e3ca Mon Sep 17 00:00:00 2001 From: Ramya Ragupathy Date: Wed, 23 Oct 2019 10:43:39 +0530 Subject: [PATCH] Ignore E203 https://github.com/psf/black/issues/315 --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ad5ce5bea7..69dfab4f44 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -46,7 +46,7 @@ jobs: mkdir ${CIRCLE_WORKING_DIRECTORY}/tests/server/lint . ${CIRCLE_WORKING_DIRECTORY}/env/bin/activate black --check manage.py server tests migrations - flake8 manage.py server tests migrations + flake8 --ignore=E203 manage.py server tests migrations - run: name: Run frontend tests command: |