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:
phoglund@webrtc.org
2013-09-16 11:26:12 +00:00
parent 15b8871e4a
commit 62b816afcf

View File

@ -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'))