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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/tool/multicommandtool.py

Issue 2019923002: Fix pylint unused-* warnings in webkitpy/tool. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 7 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/tool/multicommandtool.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/tool/multicommandtool.py b/third_party/WebKit/Tools/Scripts/webkitpy/tool/multicommandtool.py
index bc02cce1cdfe2bd50a670ce3da771dd25e781f67..1e1261902127a89b6f9fab7e63ac54af2ae0bb00 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/tool/multicommandtool.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/tool/multicommandtool.py
@@ -114,7 +114,7 @@ class MultiCommandTool(object):
def should_show_in_main_help(self, command):
return command.show_in_main_help
- def should_execute_command(self, command):
+ def should_execute_command(self, command): # Argument may be used in subclasses - pylint: disable=unused-argument
return True
def _add_global_options(self, option_parser):

Powered by Google App Engine
This is Rietveld 408576698