]> git.proxmox.com Git - mirror_qemu.git/blobdiff - scripts/qapi/parser.py
qapi/parser: Silence too-few-public-methods warning
[mirror_qemu.git] / scripts / qapi / parser.py
index 0265b47b955a3d22160b0217bd0197cb310c2454..1b006cdc133be4b60fe54ceca8fa2d1f52bc6a71 100644 (file)
@@ -461,8 +461,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)
@@ -498,6 +500,7 @@ class QAPIDoc:
         """
         Immutable dummy section for use at the end of a doc block.
         """
+        # pylint: disable=too-few-public-methods
         def append(self, line: str) -> None:
             assert False, "Text appended after end_comment() called."