Don't use flake8: noqa

A line with "# flake8: noqa" disables pep8 for the entire file.
Use "# noqa" for a line.

Change-Id: Id0e4b98f02149113963af2c1da1b42d667d139d5
This commit is contained in:
Brant Knudson 2014-04-11 09:09:07 -05:00
parent c6d30536dc
commit e1af974f38

View File

@ -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