From 3ffbdfdb1fef04422812c3235d967618f6ccd44a Mon Sep 17 00:00:00 2001 From: Josip Sokcevic Date: Mon, 27 Jun 2022 17:56:15 +0000 Subject: [PATCH] Set default pylint version to 2.7 This was announced in infra-announce@chromium.org. R=gavinmak@google.com Bug: 1105747 Change-Id: I5ac21683ae8b72d7b8f1caacda5dc5faf131fd2a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/3722041 Reviewed-by: Gavin Mak Commit-Queue: Gavin Mak --- presubmit_canned_checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/presubmit_canned_checks.py b/presubmit_canned_checks.py index 9dc48e2fd2..d854ce88a8 100644 --- a/presubmit_canned_checks.py +++ b/presubmit_canned_checks.py @@ -1003,7 +1003,7 @@ def GetPylint(input_api, disabled_warnings=None, extra_paths_list=None, pylintrc=None, - version='1.5'): + version='2.7'): """Run pylint on python files. The default files_to_check enforces looking only at *.py files.