Eh. Not worth the fuss today. There are bigger fish to fry.
Signed-off-by: John Snow <jsnow@redhat.com>
---
scripts/qapi/parser.py | 3 +++
1 file changed, 3 insertions(+)
diff --git a/scripts/qapi/parser.py b/scripts/qapi/parser.py
index 8a846079207..7511eedaa35 100644
--- a/scripts/qapi/parser.py
+++ b/scripts/qapi/parser.py
@@ -457,8 +457,10 @@ class QAPIDoc:
"""
class Section:
+ # pylint: disable=too-few-public-methods
def __init__(self, parser: QAPISchemaParser,
name: Optional[str] = None, indent: int = 0):
+
# parser, for error messages about indentation
self._parser = parser
# optional section name (argument/member or section name)
@@ -494,6 +496,7 @@ class NullSection(Section):
"""
Empty section that signifies the end of a doc block.
"""
+ # pylint: disable=too-few-public-methods
def append(self, line: str) -> None:
assert False, "BUG: Text appended after end_comment() called."
--
2.31.1