depot_tools: Replace pylint error numbers with symbolic names.

This affects a bunch of files, but only changes comments,
and shouldn't make any difference to behavior.

The purpose is to slightly improve readability of pylint
disable comments.

Change-Id: Ic6cd0f8de792b31d91c6125f6da2616450b30f11
Reviewed-on: https://chromium-review.googlesource.com/420412
Reviewed-by: Aaron Gable <agable@chromium.org>
Commit-Queue: Quinten Yearsley <qyearsley@chromium.org>
This commit is contained in:
Quinten Yearsley
2016-12-15 13:53:26 -08:00
committed by Commit Bot
parent 442fb64cab
commit b2cc4a94da
61 changed files with 225 additions and 204 deletions

View File

@@ -4,11 +4,11 @@
import sys
import config_util # pylint: disable=F0401
import config_util # pylint: disable=import-error
# This class doesn't need an __init__ method, so we disable the warning
# pylint: disable=W0232
# pylint: disable=no-init
class Dart(config_util.Config):
"""Basic Config class for Dart."""