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.

Closes Bug: #1540254

Change-Id: I5c7f2f95038e0a26d1ebfb6a64aaae31b80ed5cc
This commit is contained in:
bhagyashris 2016-06-21 16:50:58 +05:30
parent 47101792d8
commit 9baa13e217
1 changed files with 1 additions and 1 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):