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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/cli_wrapper.py

Issue 2136793002: Remove all unused variables. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/cli_wrapper.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/cli_wrapper.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/cli_wrapper.py
index 68ca2b2e726f5e2e29a4d0ff6e45e07de913bc7a..7c077039c390705da554469c9cbf6fa3edc650e3 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/cli_wrapper.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/cli_wrapper.py
@@ -66,7 +66,7 @@ def main(server_constructor, input_fn=None, argv=None, **kwargs):
server.start()
try:
_ = input_fn('Hit any key to stop the server and exit.')
- except (KeyboardInterrupt, EOFError) as e:
+ except (KeyboardInterrupt, EOFError):
pass
server.stop()

Powered by Google App Engine
This is Rietveld 408576698