Fix docstring

This commit is contained in:
Jonathan Metzman 2021-01-20 13:08:48 -08:00
parent 2b26c5446f
commit a5ad91c7f5
1 changed files with 1 additions and 2 deletions

View File

@ -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