Skip to content
Snippets Groups Projects
Commit 16bef045 authored by Iustin Pop's avatar Iustin Pop
Browse files

Disable R0922 in pylint


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.

Signed-off-by: default avatarIustin Pop <iustin@google.com>
Reviewed-by: default avatarOlivier Tharan <olive@google.com>
parent 2d54e29c
No related branches found
No related tags found
No related merge requests found
...@@ -105,4 +105,4 @@ disable-msg-cat= ...@@ -105,4 +105,4 @@ disable-msg-cat=
#enable-msg= #enable-msg=
# Disable the message(s) with the given id(s). # Disable the message(s) with the given id(s).
disable-msg=W0511 disable-msg=W0511,R0922
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment