aboutsummaryrefslogtreecommitdiff
path: root/crosperf/help.py
diff options
context:
space:
mode:
authorYunlian Jiang <yunlian@google.com>2015-12-10 10:05:59 -0800
committerchrome-bot <chrome-bot@chromium.org>2015-12-10 20:04:47 +0000
commit742ed2c8cd29f8f2d1ff28f3e3aea48307c71839 (patch)
treeb2f86ae6d7e92e28d4cdab2f302bf844bc0df30e /crosperf/help.py
parent1974c70a4e0b161a18a843229fc1af8344e11600 (diff)
downloadtoolchain-utils-742ed2c8cd29f8f2d1ff28f3e3aea48307c71839.tar.gz
crosperf: clean lint warnings.
BUG=chromium:567921 TEST=these files are lint clean. Change-Id: I889c80bd4fa2b8f67f3e386c86b68e373574911a Reviewed-on: https://chrome-internal-review.googlesource.com/241489 Commit-Ready: Yunlian Jiang <yunlian@google.com> Tested-by: Yunlian Jiang <yunlian@google.com> Reviewed-by: Caroline Tice <cmtice@google.com>
Diffstat (limited to 'crosperf/help.py')
-rw-r--r--crosperf/help.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/crosperf/help.py b/crosperf/help.py
index 09a6c66c..81e39b55 100644
--- a/crosperf/help.py
+++ b/crosperf/help.py
@@ -1,7 +1,9 @@
-#!/usr/bin/python
-
# Copyright 2011 Google Inc. All Rights Reserved.
+"""Module to print help message."""
+
+from __future__ import print_function
+
import sys
import textwrap
from settings_factory import BenchmarkSettings
@@ -10,6 +12,7 @@ from settings_factory import LabelSettings
class Help(object):
+ """The help class."""
def GetUsage(self):
return """%s [OPTIONS] EXPERIMENT_FILE""" % (sys.argv[0])