For quiet runs, telling that we're ignoring some false negatives is not really necessary.
Signed-off-by: Lucas Meneghel Rodrigues <[email protected]> --- utils/run_pylint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/run_pylint.py b/utils/run_pylint.py index 1c4fb7f..4d76672 100755 --- a/utils/run_pylint.py +++ b/utils/run_pylint.py @@ -10,7 +10,7 @@ except ImportError: sys.exit(1) # Classes of errors we ignore on quiet runs -IGNORED_ERRORS = 'E1002,E1101,E1103,E1120,F0401' +IGNORED_ERRORS = 'E1002,E1101,E1103,E1120,F0401,I0011' # By default, complain about all things LINT_VERBOSE = True -- 1.8.1.4 _______________________________________________ Autotest-kernel mailing list [email protected] https://www.redhat.com/mailman/listinfo/autotest-kernel
