Chainer库中`__init __。py`文件中的“#NOQA”是什么意思?

时间:2017-11-14 01:03:50

标签: python chainer

我正在阅读Chainer源代码并注意到https://github.com/chainer/chainer/blob/master/chainer/init.py#L7

from chainer import configuration  # NOQA
from chainer import cuda  # NOQA
from chainer import dataset  # NOQA
from chainer import datasets  # NOQA

#NOQA是什么意思?

由于

1 个答案:

答案 0 :(得分:3)

# NOQA是linter忽略该行检查的指令。 Flake8 / pep8不会报告以此结尾的行的错误。有关更多详细信息,请参阅the flake8 documentation on ignoring violations