diff options
author | John Snow <jsnow@redhat.com> | 2025-06-04 16:03:49 -0400 |
---|---|---|
committer | John Snow <jsnow@redhat.com> | 2025-06-05 12:08:53 -0400 |
commit | dc955052b400572dcfed896532d2b0dcf9d111f5 (patch) | |
tree | 50063848389426a964b6927a37164774f006144b /scripts/qapi | |
parent | f8a113701dd2d28f3bedb216e59125ddcb77fd05 (diff) | |
download | qemu-dc955052b400572dcfed896532d2b0dcf9d111f5.zip qemu-dc955052b400572dcfed896532d2b0dcf9d111f5.tar.gz qemu-dc955052b400572dcfed896532d2b0dcf9d111f5.tar.bz2 |
qapi: Add some pylint ignores
This restores the linting baseline in QAPI.
Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Message-id: 20250604200354.459501-2-jsnow@redhat.com
Diffstat (limited to 'scripts/qapi')
-rw-r--r-- | scripts/qapi/backend.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/qapi/backend.py b/scripts/qapi/backend.py index 14e60aa6..49ae6ec 100644 --- a/scripts/qapi/backend.py +++ b/scripts/qapi/backend.py @@ -13,6 +13,7 @@ from .visit import gen_visit class QAPIBackend(ABC): + # pylint: disable=too-few-public-methods @abstractmethod def generate(self, @@ -36,6 +37,7 @@ class QAPIBackend(ABC): class QAPICBackend(QAPIBackend): + # pylint: disable=too-few-public-methods def generate(self, schema: QAPISchema, |