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

Unified Diff: tools/telemetry/examples/telemetry_perf_test.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/examples/telemetry_perf_test.py
diff --git a/tools/telemetry/examples/telemetry_perf_test.py b/tools/telemetry/examples/telemetry_perf_test.py
index 6321911aefe5e42caee48eab336a59cb7458a666..b47368934c4c0065eb5932b3a8833f9cdda7ad62 100755
--- a/tools/telemetry/examples/telemetry_perf_test.py
+++ b/tools/telemetry/examples/telemetry_perf_test.py
@@ -7,11 +7,12 @@ import os
import sys
import time
-sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir))
-
from telemetry.core import browser_finder
from telemetry.core import browser_options
+sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir))
chrishenry 2014/08/07 23:13:37 What is this code doing? The entire examples/ dir
nednguyen 2014/08/08 01:13:26 import the environment of telemetry. I will revert
+
+
def Main(args):
options = browser_options.BrowserFinderOptions()

Powered by Google App Engine
This is Rietveld 408576698