Index: git_cl/PRESUBMIT.py |
diff --git a/git_cl/PRESUBMIT.py b/git_cl/PRESUBMIT.py |
index 8d2b16050bfcee9aca92de2b1d2df7a28a72f6d7..c37dce22c07658e89251d9e2c981cb44548b9fa8 100644 |
--- a/git_cl/PRESUBMIT.py |
+++ b/git_cl/PRESUBMIT.py |
@@ -28,7 +28,7 @@ def RunTests(input_api, output_api): |
old_sys_path = sys.path |
try: |
sys.path = [input_api.PresubmitLocalPath()] + sys.path |
- from test import local_rietveld |
+ from test import local_rietveld # pylint: disable=W0403 |
server = local_rietveld.LocalRietveld() |
finally: |
sys.path = old_sys_path |