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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/flakytests.py

Issue 2019923002: Fix pylint unused-* warnings in webkitpy/tool. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 7 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/tool/commands/flakytests.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/flakytests.py b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/flakytests.py
index 5b5f1c8ffdff49e1fa5f4c748a17d2f69a311f49..f6f29c0022578c1204123546c7d1b571b62eaec1 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/flakytests.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/flakytests.py
@@ -28,9 +28,7 @@
import logging
-from webkitpy.common.net import sheriff_calendar
from webkitpy.layout_tests.layout_package.bot_test_expectations import BotTestExpectationsFactory
-from webkitpy.layout_tests.models.test_expectations import TestExpectationParser
from webkitpy.layout_tests.models.test_expectations import TestExpectations
from webkitpy.layout_tests.models.test_expectations import TestExpectationsModel
from webkitpy.tool.commands.command import Command
@@ -75,8 +73,6 @@ Flakiness dashboard: %s
return filtered
def _collect_expectation_lines(self, builder_names, factory):
- all_lines = []
-
models = []
for builder_name in builder_names:
model = TestExpectationsModel()

Powered by Google App Engine
This is Rietveld 408576698