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

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: 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 9525809bbea74baed92562465344c51d6a6ed5e3..c6e1487c4f9d7052d376321d65aae7929c50ec0a 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
qyearsley 2016/06/02 16:41:32 This is a case where there's only one subclass (We
Dirk Pranke 2016/06/02 17:52:03 If there's only one subclass we should just merge
def _add_global_options(self, option_parser):

Powered by Google App Engine
This is Rietveld 408576698