Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(391)

Unified Diff: presubmit_support.py

Issue 6658013: suppress some unimportant lint warnings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gcl.py ('k') | trychange.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: presubmit_support.py
diff --git a/presubmit_support.py b/presubmit_support.py
index a62948d9fafbc39fdcfdb832fe6d7b01de73cb9f..5c4fda2af59a84f955279d05c1d98ccf86a3c40b 100755
--- a/presubmit_support.py
+++ b/presubmit_support.py
@@ -35,7 +35,7 @@ import urllib2 # Exposed through the API.
from warnings import warn
try:
- import simplejson as json
+ import simplejson as json # pylint: disable=F0401
except ImportError:
try:
import json
@@ -47,7 +47,7 @@ except ImportError:
except (ImportError, AttributeError):
# Import the one included in depot_tools.
sys.path.append(os.path.join(os.path.dirname(__file__), 'third_party'))
- import simplejson as json
+ import simplejson as json # pylint: disable=F0401
# Local imports.
import gclient_utils
« no previous file with comments | « gcl.py ('k') | trychange.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698