Fixed pylint warnings.
Passing variables into the page template with vars() is how it's regularly done AFAIK, so I'll just disable the warnings. BUG=2371 R=kjellander@webrtc.org Review URL: https://webrtc-codereview.appspot.com/2206005 git-svn-id: http://webrtc.googlecode.com/svn/trunk@4749 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@ -10,8 +10,6 @@
|
||||
|
||||
"""Implements the quality tracker dashboard and reporting facilities."""
|
||||
|
||||
import math
|
||||
|
||||
from google.appengine.ext.webapp import template
|
||||
import webapp2
|
||||
|
||||
@ -26,8 +24,10 @@ class ShowDashboard(webapp2.RequestHandler):
|
||||
"""
|
||||
def get(self):
|
||||
coverage_loader = load_coverage.CoverageDataLoader()
|
||||
# pylint: disable=W0612
|
||||
small_medium_coverage_json_data = (
|
||||
coverage_loader.load_coverage_json_data('small_medium_tests'))
|
||||
# pylint: disable=W0612
|
||||
large_coverage_json_data = (
|
||||
coverage_loader.load_coverage_json_data('large_tests'))
|
||||
|
||||
|
Reference in New Issue
Block a user