aboutsummaryrefslogtreecommitdiff
path: root/crosperf/column_chart.py
diff options
context:
space:
mode:
authorYunlian Jiang <yunlian@google.com>2015-12-09 10:29:44 -0800
committerchrome-bot <chrome-bot@chromium.org>2015-12-09 22:32:56 +0000
commite55d35ee104a41e5f7ae96f4e326f33f6beaf412 (patch)
tree762feeefa137cad92fc044dbe0ee011dd11c64d0 /crosperf/column_chart.py
parent0d1a9f32c928e21a72547f3d334d631c5861f027 (diff)
downloadtoolchain-utils-e55d35ee104a41e5f7ae96f4e326f33f6beaf412.tar.gz
crosperf: fix two file for lint warning.
BUG=chromium:567921 TEST=the warning is gone. Change-Id: Id7c0b04728342992ddc3909fa2c94e98b9e70fba Reviewed-on: https://chrome-internal-review.googlesource.com/241485 Commit-Ready: Caroline Tice <cmtice@google.com> Tested-by: Caroline Tice <cmtice@google.com> Reviewed-by: Caroline Tice <cmtice@google.com>
Diffstat (limited to 'crosperf/column_chart.py')
-rw-r--r--crosperf/column_chart.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/crosperf/column_chart.py b/crosperf/column_chart.py
index 22a45c5b..3be0f19a 100644
--- a/crosperf/column_chart.py
+++ b/crosperf/column_chart.py
@@ -1,9 +1,9 @@
-#!/usr/bin/python
-
# Copyright 2011 Google Inc. All Rights Reserved.
+"""Module to draw column chart."""
class ColumnChart(object):
+ """class to draw column chart."""
def __init__(self, title, width, height):
self.title = title
self.chart_div = filter(str.isalnum, title)