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 |