R0922, “Abstract class is only referenced 1 times”, cannot be disabled in the source code, and thus lib/http/auth.py:HttpServerRequestAuthentication gives this warning (it's actually also referenced from the tests, but we do not include them).
Therefore we need to disable it at pylintrc level. --- pylintrc | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pylintrc b/pylintrc index 39c9236..e2a9178 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 +disable-msg=W0511,R0922 -- 1.6.5.7
