Commit d945f368 authored by dpranke@chromium.org's avatar dpranke@chromium.org

suppress some unimportant lint warnings

Review URL: http://codereview.chromium.org/6658013

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@77882 0039d316-1c4b-4281-b951-d872f2087c98
parent ff5a87ad
......@@ -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
......
......@@ -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
......
......@@ -22,7 +22,7 @@ import tempfile
import urllib
try:
import simplejson as json
import simplejson as json # pylint: disable=F0401
except ImportError:
try:
import json
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment