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

Unified Diff: tools/chrome_remote_control/chrome_remote_control/browser_finder.py

Issue 10984018: [chrome_remote_control] Add pylint to PRESUMMIT and fix lint (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: for landing Created 8 years, 3 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/chrome_remote_control/chrome_remote_control/browser_finder.py
diff --git a/tools/chrome_remote_control/chrome_remote_control/browser_finder.py b/tools/chrome_remote_control/chrome_remote_control/browser_finder.py
index 4529d9893916604c54bfb8a99f6fcfaa793a5689..db73bce771b44557f3666cefa48eeb91db85a130 100644
--- a/tools/chrome_remote_control/chrome_remote_control/browser_finder.py
+++ b/tools/chrome_remote_control/chrome_remote_control/browser_finder.py
@@ -1,14 +1,14 @@
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+"""Finds browsers that can be controlled by chrome_remote_control."""
+
import logging
from chrome_remote_control import android_browser_finder
from chrome_remote_control import cros_browser_finder
from chrome_remote_control import desktop_browser_finder
-"""Finds browsers that can be controlled by chrome_remote_control."""
-
ALL_BROWSER_TYPES = (
desktop_browser_finder.ALL_BROWSER_TYPES + ',' +
android_browser_finder.ALL_BROWSER_TYPES + ',' +

Powered by Google App Engine
This is Rietveld 408576698