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

Unified Diff: tools/telemetry/examples/measure_trace.py

Issue 1029263003: [telemetry] Sort imports in Telemetry and its dependents. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Ensure we're up to date. Created 5 years, 9 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/examples/measure_trace.py
diff --git a/tools/telemetry/examples/measure_trace.py b/tools/telemetry/examples/measure_trace.py
index 31e49e765aba6da3872878ab0eed10df91488e4b..22fcc13792401a957254456b484bfebe8dd3e6ce 100755
--- a/tools/telemetry/examples/measure_trace.py
+++ b/tools/telemetry/examples/measure_trace.py
@@ -9,19 +9,19 @@ import os
import sys
sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir))
-sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, os.pardir,
- 'perf'))
-
from telemetry.page import page as page_module
+from telemetry.results import buildbot_output_formatter
+from telemetry.results import page_test_results
from telemetry.timeline import model
from telemetry.timeline import tracing_timeline_data
-from telemetry.results import page_test_results
-from telemetry.results import buildbot_output_formatter
-from telemetry.web_perf import timeline_interaction_record as tir_module
from telemetry.web_perf.metrics import smoothness
+from telemetry.web_perf import timeline_interaction_record as tir_module
+
+sys.path.append(os.path.join(
+ os.path.dirname(__file__), os.pardir, os.pardir, 'perf'))
# pylint: disable=F0401
-from measurements import smoothness_controller
from measurements import smooth_gesture_util
+from measurements import smoothness_controller
def _ExtractInteractionsRecordFromThread(thread, timeline_model):
« no previous file with comments | « tools/perf/profile_creators/history_profile_extender_unittest.py ('k') | tools/telemetry/telemetry/benchmark.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698