qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 5/6] qapi/parser.py: Silence too-few-public-methods warning


From: John Snow
Subject: [PATCH 5/6] qapi/parser.py: Silence too-few-public-methods warning
Date: Wed, 19 May 2021 15:17:17 -0400

Eh. Two properties, a bool method and a public method are non-trivial
enough for me. (Especially in typed python!)

Signed-off-by: John Snow <jsnow@redhat.com>
---
 scripts/qapi/parser.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/scripts/qapi/parser.py b/scripts/qapi/parser.py
index fefe4c37f44..36d4bd175a0 100644
--- a/scripts/qapi/parser.py
+++ b/scripts/qapi/parser.py
@@ -458,6 +458,8 @@ class QAPIDoc:
     class Section:
         def __init__(self, parser: QAPISchemaParser,
                      name: Optional[str] = None, indent: int = 0):
+            # pylint: disable=too-few-public-methods
+
             # parser, for error messages about indentation
             self._parser = parser
             # optional section name (argument/member or section name)
-- 
2.30.2




reply via email to

[Prev in Thread] Current Thread [Next in Thread]