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

Unified Diff: tools/telemetry/unittest_data/test_page_set.py

Issue 445793004: Fix import order with isort tool. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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/unittest_data/test_page_set.py
diff --git a/tools/telemetry/unittest_data/test_page_set.py b/tools/telemetry/unittest_data/test_page_set.py
index 5f8bb4f039de7f8d5a70cc3da0a9d1025ae99836..bdee24175099ae164cf64645410a868a49008d2a 100644
--- a/tools/telemetry/unittest_data/test_page_set.py
+++ b/tools/telemetry/unittest_data/test_page_set.py
@@ -2,11 +2,11 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-from telemetry.page import page_set
from telemetry.page import page
-
+from telemetry.page import page_set
from unittest_data.pages.external_page import ExternalPage
+
class InternalPage(page.Page):
def __init__(self, ps):
super(InternalPage, self).__init__('file://bar.html', page_set=ps)

Powered by Google App Engine
This is Rietveld 408576698