Chromium Code Reviews| 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): |