From 8f09aae18ba80c6c6b0b23f9dcfeb9f0edd2b640 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sat, 9 Apr 2016 13:14:58 +0100 Subject: [PATCH] Ignore import position --- runtests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtests b/runtests index 82084f5..c71b2b9 100755 --- a/runtests +++ b/runtests @@ -43,7 +43,7 @@ check_if_exit_code() print("{}Coverage Complete. {}Linting...".format(Fore.GREEN, Fore.YELLOW)) -FLAKE8_IGNORE = '--ignore=E128,E501,E401' +FLAKE8_IGNORE = '--ignore=E128,E501,E401,E402' try: subprocess.check_output([os.path.join(bin_dir, 'flake8'), 'project', FLAKE8_IGNORE, '--exclude=migrations,settings,wsgi.py,__init__.py']) subprocess.check_output([os.path.join(bin_dir, 'flake8'), 'scripts', FLAKE8_IGNORE])