Remove incorrectly used "# flake8: noqa"

"# flake8: noqa" option disables all checks for the whole file.
To disable one line we should use "# noqa".
Remove unused "# flake8: noqa" and fix hidden hacking errors.

Change-Id: I624e96784ae7a22b5a5766f38bdf1fb8ade2d0a2
Closes-Bug: #1540254
This commit is contained in:
Bo Wang 2016-02-01 16:32:12 +08:00
parent 1eacabe686
commit 3298ad98c8
1 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ import ConfigParser
import os
import sys
import install_venv_common as install_venv # flake8: noqa
import install_venv_common as install_venv
def print_help(project, venv, root):
@ -42,7 +42,7 @@ def print_help(project, venv, root):
$ %(root)s/tools/with_venv.sh <your command>
"""
print help % dict(project=project, venv=venv, root=root)
print (help % dict(project=project, venv=venv, root=root))
def main(argv):