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

Unified Diff: verification/presubmit_shim.py

Issue 117513003: Removed an assert in presubmit_shim.py (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/commit-queue
Patch Set: Created 7 years 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: verification/presubmit_shim.py
diff --git a/verification/presubmit_shim.py b/verification/presubmit_shim.py
index 744a53c2516e235ddf94a259e5da146adde7eb07..85d461afda0db85b0397bd79cf7f6ba841429edd 100755
--- a/verification/presubmit_shim.py
+++ b/verification/presubmit_shim.py
@@ -14,14 +14,13 @@ import sys
ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, os.path.dirname(ROOT_DIR))
-import find_depot_tools # pylint: disable=W0611
-import presubmit_support
+import find_depot_tools # pylint: disable=W0611,F0401
+import presubmit_support # pylint: disable=F0401
Paweł Hajdan Jr. 2014/01/02 12:25:30 I don't remember hitting pylint errors on importin
# Do not pass them through the command line.
email = sys.stdin.readline().strip()
assert email
password = sys.stdin.readline().strip()
-assert password
sys.stdin.close()
argv = sys.argv[1:]
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698