From 3298ad98c88309c0aab972284b2a403573224c94 Mon Sep 17 00:00:00 2001 From: Bo Wang Date: Mon, 1 Feb 2016 16:32:12 +0800 Subject: 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 --- tools/install_venv.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools') diff --git a/tools/install_venv.py b/tools/install_venv.py index cc21843..1dab63e 100644 --- a/tools/install_venv.py +++ b/tools/install_venv.py @@ -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 """ - print help % dict(project=project, venv=venv, root=root) + print (help % dict(project=project, venv=venv, root=root)) def main(argv): -- cgit v1.2.1