Fix comparison operator

This commit is contained in:
Ivor Peles 2020-11-25 17:34:03 -05:00
parent d27a3f453c
commit 340e966055
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ function! ale#fixers#isort#Fix(buffer) abort
\ ? ' run isort'
\ : ''
if !executable(l:executable) && l:executable != 'pipenv'
if !executable(l:executable) && l:executable !=# 'pipenv'
return 0
endif