• C
    Selftests: respect pylint 2.2.0 checks · e28a2461
    Cleber Rosa 提交于
    The newly released pylint version 2.2.0, changed its default behavior
    (enabled) the following checks:
    
     * :unnecessary-pass (W0107): *Unnecessary pass statement*
       Used when a "pass" statement that can be avoided is encountered.
    
     * :unused-import (W0611): *Unused %s*
       Used when an imported module or variable is not used.
    
    Let's apply fixes to those checks, and at the same time, pin the
    pylint versions so that our CI environment is more stable (code that
    test our code -- pylint -- doesn't change, while our code changes).
    
    For Python 2, the latest release was 1.9.3, so let's use that.
    Signed-off-by: NCleber Rosa <crosa@redhat.com>
    e28a2461
__init__.py 12.0 KB