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

Unified Diff: tools/telemetry/telemetry/core/browser_credentials.py

Issue 739623005: [Telemetry] Resolve errors due to new pylint checker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ready to land Created 6 years, 1 month 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
« no previous file with comments | « tools/telemetry/telemetry/core/bitmap.py ('k') | tools/telemetry/telemetry/core/browser_finder.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/core/browser_credentials.py
diff --git a/tools/telemetry/telemetry/core/browser_credentials.py b/tools/telemetry/telemetry/core/browser_credentials.py
index fd12f417d8da898673b74c1dcce2ae60871241c2..ca40b582e2f19490a296409000c10e08f2ad3f83 100644
--- a/tools/telemetry/telemetry/core/browser_credentials.py
+++ b/tools/telemetry/telemetry/core/browser_credentials.py
@@ -19,7 +19,7 @@ class CredentialsError(Exception):
class BrowserCredentials(object):
- def __init__(self, backends = None):
+ def __init__(self, backends=None):
self._credentials = {}
self._credentials_path = None
self._extra_credentials = {}
@@ -125,7 +125,7 @@ class BrowserCredentials(object):
self._credentials[k] = self._extra_credentials[k]
def WarnIfMissingCredentials(self, page):
- if (page.credentials and not self.CanLogin(page.credentials)):
+ if page.credentials and not self.CanLogin(page.credentials):
files_to_tweak = []
if page.credentials_path:
files_to_tweak.append(page.credentials_path)
« no previous file with comments | « tools/telemetry/telemetry/core/bitmap.py ('k') | tools/telemetry/telemetry/core/browser_finder.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698