summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorbhagyashris <bhagyashri.shewale@nttdata.com>2016-06-21 16:50:58 +0530
committerbhagyashris <bhagyashri.shewale@nttdata.com>2016-06-21 16:50:58 +0530
commit9baa13e21716f194c17e755692cf5997e168f19a (patch)
tree3af0fb515ea7db1d4161ca5a9047350a7b729bdd /tools
parent47101792d877cc2ca7f5746c421873fed8d2a605 (diff)
downloadpython-saharaclient-9baa13e21716f194c17e755692cf5997e168f19a.tar.gz
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
Diffstat (limited to 'tools')
-rw-r--r--tools/install_venv.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/install_venv.py b/tools/install_venv.py
index 4d8feea..d32868c 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):