Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(273)

Unified Diff: git_cl/PRESUBMIT.py

Issue 6685023: Make git_cl pass pylint cleanly (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: whoops Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698