From 7a48750610bbed164750a3f0fbf0fd9e88fa56c5 Mon Sep 17 00:00:00 2001 From: w0rp Date: Sun, 10 Feb 2019 11:43:48 +0000 Subject: Complain about binary operators on the ends of lines --- ale_linters/python/bandit.vim | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'ale_linters/python') diff --git a/ale_linters/python/bandit.vim b/ale_linters/python/bandit.vim index 1b5a84a4..819c83aa 100644 --- a/ale_linters/python/bandit.vim +++ b/ale_linters/python/bandit.vim @@ -7,9 +7,10 @@ call ale#Set('python_bandit_use_global', get(g:, 'ale_use_global_executables', 0 call ale#Set('python_bandit_auto_pipenv', 0) function! ale_linters#python#bandit#GetExecutable(buffer) abort - if (ale#Var(a:buffer, 'python_auto_pipenv') || - \ ale#Var(a:buffer, 'python_bandit_auto_pipenv')) - \ && ale#python#PipenvPresent(a:buffer) + if ( + \ ale#Var(a:buffer, 'python_auto_pipenv') + \ || ale#Var(a:buffer, 'python_bandit_auto_pipenv') + \) && ale#python#PipenvPresent(a:buffer) return 'pipenv' endif -- cgit v1.2.3