Ignore executable check when executable is pipenv

This commit is contained in:
Ivor Peles
2020-10-06 04:07:10 -04:00
parent 6efca486e8
commit d27a3f453c

View File

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