pylint 似乎无法处理“from”。导入 foo”风格导入
如果我这样做:
from . import foo
在脚本中运行 pylint ,我会得到:
F: 1: 无法导入 %r
有没有办法让 pylint 理解这种语法?
If I do:
from . import foo
In a script and run pylint over it, I get:
F: 1: Unable to import %r
Is there a way a work around for getting pylint to understand this syntax?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
至少更新到 pylint 0.18.1 / logilab-astng 0.19。 1?
Update to at least pylint 0.18.1 / logilab-astng 0.19.1?
请注意,“from . import smthg”仅允许在 Python 包中使用。
我已经对此进行了测试
,但无法重现您的问题:
Note that the "from . import smthg" is only allowed in a Python package.
I've tested this with
and was not able to reproduce your problem: