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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/builder_list.py

Issue 2256793002: Make docstrings more consistent using format-webkitpy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make fix_docstrings match function stricter and fix style/main.py. 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/layout_tests/builder_list.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/builder_list.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/builder_list.py
index 8fbec506e22dc6942d83fb41ad61a3b7e7392dc4..7c42d60a3bdd746dfc0071224f5ae2303e217021 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/builder_list.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/builder_list.py
@@ -38,8 +38,7 @@ The actual constants are in webkitpy.common.config.builders.
class BuilderList(object):
def __init__(self, builders_dict):
- """
- The given dictionary maps builder names to dicts with the keys:
+ """The given dictionary maps builder names to dicts with the keys:
"port_name": A fully qualified port name.
"specifiers": TestExpectations specifiers for that config. Valid values are found in
TestExpectationsParser._configuration_tokens_list. specifiers is a list whose
@@ -48,7 +47,7 @@ class BuilderList(object):
Possible refactoring note: Potentially, it might make sense to use
webkitpy.common.buildbot.Builder and add port_name and specifiers
properties to that class.
- """
+ """
self._builders = builders_dict
def all_builder_names(self):

Powered by Google App Engine
This is Rietveld 408576698