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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/common/memoized.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/memoized.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/memoized.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/memoized.py
index 7502f6ca211d63587397d47223c726454066b326..7a9a925e12679afbe123692972ced8a3f118dc4f 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/memoized.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/memoized.py
@@ -32,8 +32,7 @@
import functools
-# This class has a lower-case name because it is a decorator.
-class memoized(object): # pylint: disable=invalid-name
+class memoized(object):
def __init__(self, function):
self._function = function

Powered by Google App Engine
This is Rietveld 408576698