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

RAPI: fix a pylint warning

Child classes of _R_TAGS must define TAG_LEVEL, but for good style let's
define it also here to at least ensure we don't get a 'Unknown
attribute' exception.

Of course, this also silences a pylint warning.

Reviewed-by: amishchenko
parent 12649e35
No related branches found
No related tags found
No related merge requests found
......@@ -459,6 +459,7 @@ class _R_Tags(baserlib.R_Generic):
TAG_LEVEL for it.
"""
TAG_LEVEL = None
def __init__(self, items, queryargs, req):
"""A tag resource constructor.
......
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