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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/common/system/user_mock.py

Issue 2248653002: Revert of Fix pylint warnings in webkitpy/common/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Manual Revert (Patch Set 1 causes patch failure in read_checksum_from_png_unittest.py) Created 4 years, 4 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/common/system/user_mock.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/user_mock.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/user_mock.py
index dcd8f170f4af5ba8ce5aa485c429fabe8122264d..e70e130930e0f8c95b12db95f42d578e77617108 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/user_mock.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/user_mock.py
@@ -34,11 +34,11 @@ _log = logging.getLogger(__name__)
class MockUser(object):
@classmethod
- def prompt(cls, message, repeat=1, raw_input_func=raw_input): # pylint: disable=unused-argument
+ def prompt(cls, message, repeat=1, raw_input=raw_input):
return "Mock user response"
@classmethod
- def prompt_with_list(cls, list_title, list_items, can_choose_multiple=False, raw_input_func=raw_input):
+ def prompt_with_list(cls, list_title, list_items, can_choose_multiple=False, raw_input=raw_input):
pass
def __init__(self):

Powered by Google App Engine
This is Rietveld 408576698