gpt4 book ai didi

python - 如何让 Pyflakes 忽略一条语句?

转载 作者:IT老高 更新时间:2023-10-28 12:32:09 28 4
gpt4 key购买 nike

我们的很多模块都以:

try:
import json
except ImportError:
from django.utils import simplejson as json # Python 2.4 fallback.

...这是整个文件中唯一的 Pyflakes 警告:

foo/bar.py:14: redefinition of unused 'json' from line 12

如何让 Pyflakes 忽略这一点?

(通常我会去阅读 the docs 但链接已损坏。如果没有人有答案,我会阅读源代码。)

最佳答案

如果您可以使用 flake8相反 - 它包装了 pyflakes 以及 pep8 检查器 - 以

结尾的行

# NOQA

(其中空格很重要 - 在代码末尾和 # 之间有 2 个空格,在它和 NOQA 文本之间有一个空格)将告诉检查器忽略该行的任何错误。

关于python - 如何让 Pyflakes 忽略一条语句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5033727/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com