From 14cca6d1155720124bcc735b189212096a76391a Mon Sep 17 00:00:00 2001 From: Nick Krichevsky Date: Tue, 27 Jun 2017 10:07:26 -0400 Subject: Remove style classification from E999 (#696) * Remove style classification from E999 * Update test_flake8_handler to reflect E999 changes --- ale_linters/python/flake8.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ale_linters/python/flake8.vim') 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' -- cgit v1.2.3