10

如果我使用的是不存在的成员,我非常喜欢让 pylint 告诉我。但是,我的新项目同时使用了 twisted 和 ehem 模块,这似乎使 pylint 感到困惑。

我怎样才能摆脱这些(不正确的)pylint 警告,而无需关闭 E1101,也无需在每个相关呼叫周围散布警告删除评论?

E1101:  8,0: Module 'twisted.internet.reactor' has no 'run' member
E1101: 49,25:sunrise_next: Module 'ephem' has no 'Sun' member
E1101: 63,26:sunset_next: Module 'ephem' has no 'Sun' member
4

1 回答 1

12

答案是在您的 pylintrc 中添加如下所示的部分,其中包含有问题的类。

# List of classes names for which member attributes should not be checked
# (useful for classes with attributes dynamically set).
ignored-classes=SQLObject,twisted.internet.reactor,ephem
于 2013-09-10T07:23:43.950 回答