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

Unified Diff: tools/telemetry/telemetry/results/buildbot_output_formatter.py

Issue 445793004: Fix import order with isort tool. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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: tools/telemetry/telemetry/results/buildbot_output_formatter.py
diff --git a/tools/telemetry/telemetry/results/buildbot_output_formatter.py b/tools/telemetry/telemetry/results/buildbot_output_formatter.py
index d2ea070c38f5f2dc46668134fec6bec9ff2d3b1f..4304e480af6673b476e7c76b3fc82e257d37af7b 100644
--- a/tools/telemetry/telemetry/results/buildbot_output_formatter.py
+++ b/tools/telemetry/telemetry/results/buildbot_output_formatter.py
@@ -2,10 +2,10 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-from telemetry import perf_tests_helper
from telemetry import value as value_module
-from telemetry.value import summary as summary_module
+from telemetry import perf_tests_helper
chrishenry 2014/08/07 23:13:38 This too.. perf_tests_helper should be before valu
from telemetry.results import output_formatter
+from telemetry.value import summary as summary_module
class BuildbotOutputFormatter(output_formatter.OutputFormatter):

Powered by Google App Engine
This is Rietveld 408576698