diff options
author | w0rp <devw0rp@gmail.com> | 2017-08-11 00:31:42 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-08-11 00:31:42 +0100 |
commit | d5ae3201a4128c9e7b1042e9ea40b7f13cf72a10 (patch) | |
tree | 86ca55a467b86555aaed7e83e0094a5def357bd1 /ale_linters/python/mypy.vim | |
parent | b1462ac66c10ed323c5148ecd8821c3a433ff403 (diff) | |
download | ale-d5ae3201a4128c9e7b1042e9ea40b7f13cf72a10.zip |
Ban !=# and !=? from the codebase
Diffstat (limited to 'ale_linters/python/mypy.vim')
-rw-r--r-- | ale_linters/python/mypy.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/python/mypy.vim b/ale_linters/python/mypy.vim index f71365a6..1d4efe89 100644 --- a/ale_linters/python/mypy.vim +++ b/ale_linters/python/mypy.vim @@ -37,7 +37,7 @@ function! ale_linters#python#mypy#Handle(buffer, lines) abort let l:buffer_filename = expand('#' . a:buffer . ':p') for l:match in ale#util#GetMatches(a:lines, l:pattern) - if l:buffer_filename[-len(l:match[1]):] !=# l:match[1] + if l:buffer_filename[-len(l:match[1]):] isnot# l:match[1] continue endif |