diff --git a/.flake8 b/.flake8 index 711bb18..15cb856 100644 --- a/.flake8 +++ b/.flake8 @@ -1,2 +1,2 @@ [flake8] -ignore = W503 +ignore = W503,E203 diff --git a/tests/test_style.py b/tests/test_style.py index c7d74f5..d3351a0 100644 --- a/tests/test_style.py +++ b/tests/test_style.py @@ -33,7 +33,9 @@ class TestStyle(unittest.TestCase): """ # We ignore E712, which disallows non-identity comparisons with True and False # We ignore W503, which disallows line break before binary operator - flake8_command = [sys.executable, '-m', 'flake8', '--ignore=E712,W503', REPO_PATH] + flake8_command = [ + sys.executable, '-m', 'flake8', + '--ignore=E712,W503,E203', REPO_PATH] proc = subprocess.Popen(flake8_command, stdout=subprocess.PIPE) print(proc.communicate())