Use better string comparison operators in isort fixer
This commit is contained in:
parent
713e53e3f6
commit
ce3d891bed
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Reference in a new issue