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

Unified Diff: tools/perf/page_sets/long_running_idle_google_cases.py

Issue 1458083003: [Telemetry + tools/perf] Modify the pylint disable message to use symbolic name (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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/perf/page_sets/key_silk_cases.py ('k') | tools/perf/page_sets/media_cns_cases.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/long_running_idle_google_cases.py
diff --git a/tools/perf/page_sets/long_running_idle_google_cases.py b/tools/perf/page_sets/long_running_idle_google_cases.py
index 3f8ca9508773299d180bb8c22af5c0cc087cd5af..ee3f5c7559a1e5172304be143e58438435698985 100644
--- a/tools/perf/page_sets/long_running_idle_google_cases.py
+++ b/tools/perf/page_sets/long_running_idle_google_cases.py
@@ -9,14 +9,14 @@ from page_sets import google_pages
IDLE_TIME_IN_SECONDS = 100
def _CreateIdlePageClass(base_page_cls):
- class DerivedIdlePage(base_page_cls): # pylint: disable=W0232
+ class DerivedIdlePage(base_page_cls): # pylint: disable=no-init
def RunPageInteractions(self, action_runner):
action_runner.Wait(IDLE_TIME_IN_SECONDS)
return DerivedIdlePage
def _CreateIdleBackgroundPageClass(base_page_cls):
- class DerivedIdlePage(base_page_cls): # pylint: disable=W0232
+ class DerivedIdlePage(base_page_cls): # pylint: disable=no-init
def RunPageInteractions(self, action_runner):
action_runner.tab.browser.tabs.New()
action_runner.Wait(IDLE_TIME_IN_SECONDS)
« no previous file with comments | « tools/perf/page_sets/key_silk_cases.py ('k') | tools/perf/page_sets/media_cns_cases.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698