Dario Faggioli
3206ea7c01
- Revert to revision 715. We're fixing bug 1199924, before moving to QEMU 7.0 OBS-URL: https://build.opensuse.org/request/show/979479 OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=718
38 lines
1.3 KiB
Diff
38 lines
1.3 KiB
Diff
From: John Snow <jsnow@redhat.com>
|
|
Date: Fri, 25 Feb 2022 15:59:43 -0500
|
|
Subject: python/aqmp: squelch pylint warning for too many lines
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Git-commit: 1b9c8cb6ce6b5c5911eb715b2d5b0a2671999dde
|
|
|
|
I would really like to keep this under 1000 lines, I promise. Doesn't
|
|
look like it's gonna happen.
|
|
|
|
Signed-off-by: John Snow <jsnow@redhat.com>
|
|
Acked-by: Kevin Wolf <kwolf@redhat.com>
|
|
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
|
|
Message-id: 20220225205948.3693480-6-jsnow@redhat.com
|
|
Signed-off-by: John Snow <jsnow@redhat.com>
|
|
(cherry picked from commit 1b9c8cb6ce6b5c5911eb715b2d5b0a2671999dde)
|
|
Signed-off-by: Li Zhang <lizhang@suse.de>
|
|
---
|
|
python/qemu/aqmp/protocol.py | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/python/qemu/aqmp/protocol.py b/python/qemu/aqmp/protocol.py
|
|
index 56f05b90308c44a86d0978fd2ce6..631bcdaa554f4a104af4e25a3c61 100644
|
|
--- a/python/qemu/aqmp/protocol.py
|
|
+++ b/python/qemu/aqmp/protocol.py
|
|
@@ -10,6 +10,9 @@ In this package, it is used as the implementation for the `QMPClient`
|
|
class.
|
|
"""
|
|
|
|
+# It's all the docstrings ... ! It's long for a good reason ^_^;
|
|
+# pylint: disable=too-many-lines
|
|
+
|
|
import asyncio
|
|
from asyncio import StreamReader, StreamWriter
|
|
from enum import Enum
|