From ca4df25002a60910b38bfdd8d71eb5bff5a79b49 Mon Sep 17 00:00:00 2001 From: Ryan Egesdahl Date: Thu, 27 Aug 2020 11:05:57 -0700 Subject: SERVER-50592 Update mypy and GitPython pip requirements Update the mypy and GitPython pip modules that are required for linting builds before commits to compatible versions rather than hard version requirements. --- buildscripts/eslint.py | 1 + 1 file changed, 1 insertion(+) (limited to 'buildscripts/eslint.py') diff --git a/buildscripts/eslint.py b/buildscripts/eslint.py index 92a90b03ff3..1793ac7cee8 100755 --- a/buildscripts/eslint.py +++ b/buildscripts/eslint.py @@ -92,6 +92,7 @@ def get_eslint_from_cache(dest_file, platform, arch): print("Downloading ESLint %s from %s, saving to %s" % (ESLINT_VERSION, url, temp_tar_file)) urllib.request.urlretrieve(url, temp_tar_file) + # pylint: disable=too-many-function-args eslint_distfile = ESLINT_SOURCE_TAR_BASE.substitute(platform=platform, arch=arch) extract_eslint(temp_tar_file, eslint_distfile) shutil.move(eslint_distfile, dest_file) -- cgit v1.2.1