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:
@@ -22,7 +22,7 @@ import ConfigParser
|
|||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
import install_venv_common as install_venv # flake8: noqa
|
import install_venv_common as install_venv
|
||||||
|
|
||||||
|
|
||||||
def print_help(project, venv, root):
|
def print_help(project, venv, root):
|
||||||
@@ -42,7 +42,7 @@ def print_help(project, venv, root):
|
|||||||
|
|
||||||
$ %(root)s/tools/with_venv.sh <your command>
|
$ %(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):
|
def main(argv):
|
||||||
|
Reference in New Issue
Block a user