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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/style/error_handlers.py

Issue 2256793002: Make docstrings more consistent using format-webkitpy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make indentation of final quote based on parse tree (indentation prior to docstring node) rather th… Created 4 years, 3 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/style/error_handlers.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/style/error_handlers.py b/third_party/WebKit/Tools/Scripts/webkitpy/style/error_handlers.py
index 9d636149456e9d8b500ba3678a7fad0c8b498381..9ed45cb6ff9faad03fde6aba250ddb5043ef7b06 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/style/error_handlers.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/style/error_handlers.py
@@ -45,7 +45,6 @@ Methods:
5 means that we are certain of the problem, and the
value 1 means that it could be a legitimate construct.
message: The error message to report.
-
"""
@@ -69,7 +68,6 @@ class DefaultStyleErrorHandler(object):
for all lines should be reported. When it is not
None, this array normally contains the line numbers
corresponding to the modified lines of a patch.
-
"""
if line_numbers is not None:
line_numbers = set(line_numbers)
@@ -132,7 +130,6 @@ class DefaultStyleErrorHandler(object):
"""Handle the occurrence of a style error.
See the docstring of this module for more information.
-
"""
if not self.should_line_be_checked(line_number):
return False

Powered by Google App Engine
This is Rietveld 408576698