Projet

Général

Profil

0006-trivial-fix-subprocess-run-check-pylint-warning-5273.patch

Frédéric Péters, 04 avril 2021 17:20

Télécharger (1,04 ko)

Voir les différences:

Subject: [PATCH 06/15] trivial: fix subprocess-run-check pylint warning
 (#52732)

 pylint.rc             | 1 -
 wcs/qommon/spooler.py | 3 ++-
 2 files changed, 2 insertions(+), 2 deletions(-)
pylint.rc
43 43
    redefined-outer-name,
44 44
    signature-differs,
45 45
    stop-iteration-return,
46
    subprocess-run-check,
47 46
    super-init-not-called,
48 47
    superfluous-parens,
49 48
    too-many-ancestors,
wcs/qommon/spooler.py
31 31
            args['tenant_dir'].strip('/').split('/')[-1],
32 32
            '--job-id',
33 33
            args['job_id'],
34
        ]
34
        ],
35
        check=False,
35 36
    )
36
-