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
experimental/szager/collated-output
dpranke@chromium.org 14 years ago
parent ff5a87adfb
commit d945f368d2

@ -22,7 +22,7 @@ from third_party import upload
import urllib2 import urllib2
try: try:
import simplejson as json import simplejson as json # pylint: disable=F0401
except ImportError: except ImportError:
try: try:
import json import json
@ -33,7 +33,7 @@ except ImportError:
except (ImportError, AttributeError): except (ImportError, AttributeError):
# Import the one included in depot_tools. # Import the one included in depot_tools.
sys.path.append(os.path.join(os.path.dirname(__file__), 'third_party')) 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 import breakpad # pylint: disable=W0611

@ -35,7 +35,7 @@ import urllib2 # Exposed through the API.
from warnings import warn from warnings import warn
try: try:
import simplejson as json import simplejson as json # pylint: disable=F0401
except ImportError: except ImportError:
try: try:
import json import json
@ -47,7 +47,7 @@ except ImportError:
except (ImportError, AttributeError): except (ImportError, AttributeError):
# Import the one included in depot_tools. # Import the one included in depot_tools.
sys.path.append(os.path.join(os.path.dirname(__file__), 'third_party')) 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. # Local imports.
import gclient_utils import gclient_utils

@ -22,7 +22,7 @@ import tempfile
import urllib import urllib
try: try:
import simplejson as json import simplejson as json # pylint: disable=F0401
except ImportError: except ImportError:
try: try:
import json import json

Loading…
Cancel
Save