There seems to be a bug in pylint relating to W0201 (“Attribute '%r' defined outside __init__”) being re-enabled by simple comments and not being able to be disabled again.
Until that is fixed, we disable this warning. --- pylintrc | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pylintrc b/pylintrc index e2a9178..7d42070 100644 --- a/pylintrc +++ b/pylintrc @@ -105,4 +105,4 @@ disable-msg-cat= #enable-msg= # Disable the message(s) with the given id(s). -disable-msg=W0511,R0922 +disable-msg=W0511,R0922,W0201 -- 1.6.5.7
