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

Unified Diff: gcl.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 | « no previous file | presubmit_support.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gcl.py
diff --git a/gcl.py b/gcl.py
index 2e68617fab9b5eb45ad6aeba41fe67586836f424..6b198a23cfa2fc47af4c5094df12294b93e16f4b 100755
--- a/gcl.py
+++ b/gcl.py
@@ -22,7 +22,7 @@ from third_party import upload
import urllib2
try:
- import simplejson as json
+ import simplejson as json # pylint: disable=F0401
except ImportError:
try:
import json
@@ -33,7 +33,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
import breakpad # pylint: disable=W0611
« no previous file with comments | « no previous file | presubmit_support.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698