From e1af974f3812f381b380c3dd41e6706e37381053 Mon Sep 17 00:00:00 2001 From: Brant Knudson Date: Fri, 11 Apr 2014 09:09:07 -0500 Subject: [PATCH] Don't use flake8: noqa A line with "# flake8: noqa" disables pep8 for the entire file. Use "# noqa" for a line. Change-Id: Id0e4b98f02149113963af2c1da1b42d667d139d5 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 83f2a7a646..736375744d 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ import setuptools # setuptools if some other modules registered functions in `atexit`. # solution from: http://bugs.python.org/issue15881#msg170215 try: - import multiprocessing # flake8: noqa + import multiprocessing # noqa except ImportError: pass