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