From a5ad91c7f5a918adfa664337e7a8fc337e882249 Mon Sep 17 00:00:00 2001 From: Jonathan Metzman Date: Wed, 20 Jan 2021 13:08:48 -0800 Subject: [PATCH] Fix docstring --- infra/presubmit.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/infra/presubmit.py b/infra/presubmit.py index 7699ab9ff..a84db3b44 100755 --- a/infra/presubmit.py +++ b/infra/presubmit.py @@ -293,8 +293,7 @@ def is_nonfuzzer_python(path): def lint(): - """Run python's linter on |paths| if it is a python file. Return False if it - fails linting.""" + """Run python's linter on infra. Return False if it fails linting.""" command = ['python3', '-m', 'pylint', '-j', '0', 'infra'] returncode = subprocess.run(command, check=False).returncode