trivial: fix subprocess-run-check pylint warning (#52732)

This commit is contained in:
Frédéric Péters 2021-04-02 22:47:01 +02:00
parent 1a611d0ce7
commit e35c293dcb
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,6 @@ disable=
redefined-outer-name, redefined-outer-name,
signature-differs, signature-differs,
stop-iteration-return, stop-iteration-return,
subprocess-run-check,
super-init-not-called, super-init-not-called,
superfluous-parens, superfluous-parens,
too-many-ancestors, too-many-ancestors,

View File

@ -31,5 +31,6 @@ def run_after_job(args):
args['tenant_dir'].strip('/').split('/')[-1], args['tenant_dir'].strip('/').split('/')[-1],
'--job-id', '--job-id',
args['job_id'], args['job_id'],
] ],
check=False,
) )