summaryrefslogtreecommitdiff
path: root/ale_linters/python/flake8.vim
diff options
context:
space:
mode:
authorNick Krichevsky <njk828@gmail.com>2017-06-27 10:07:26 -0400
committerw0rp <w0rp@users.noreply.github.com>2017-06-27 15:07:26 +0100
commit14cca6d1155720124bcc735b189212096a76391a (patch)
treeca4bf618383ff0ab225cf2c05e05680c120a1387 /ale_linters/python/flake8.vim
parent16ba9bd680f513affd7b5c64e2f012a85748393a (diff)
downloadale-14cca6d1155720124bcc735b189212096a76391a.zip
Remove style classification from E999 (#696)v1.4.0
* Remove style classification from E999 * Update test_flake8_handler to reflect E999 changes
Diffstat (limited to 'ale_linters/python/flake8.vim')
-rw-r--r--ale_linters/python/flake8.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/python/flake8.vim b/ale_linters/python/flake8.vim
index df091053..fb02e1ee 100644
--- a/ale_linters/python/flake8.vim
+++ b/ale_linters/python/flake8.vim
@@ -136,7 +136,7 @@ function! ale_linters#python#flake8#Handle(buffer, lines) abort
\ 'type': 'W',
\}
- if l:code[:0] ==# 'F'
+ if l:code[:0] ==# 'F' || l:code ==# 'E999'
let l:item.type = 'E'
elseif l:code[:0] ==# 'E'
let l:item.type = 'E'