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
diff --git a/tools/quality_tracking/dashboard/dashboard.py b/tools/quality_tracking/dashboard/dashboard.py
index 121009c..4325011 100644
--- a/tools/quality_tracking/dashboard/dashboard.py
+++ b/tools/quality_tracking/dashboard/dashboard.py
@@ -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 @@
   """
   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'))