Use better string comparison operators in isort fixer

This commit is contained in:
Ivor Peles 2020-11-25 17:57:40 -05:00
parent 713e53e3f6
commit ce3d891bed
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 isnot# 'pipenv'
return 0
endif