summaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorJohn Snow2022-02-25 21:59:43 +0100
committerJohn Snow2022-03-07 20:36:41 +0100
commit1b9c8cb6ce6b5c5911eb715b2d5b0a2671999dde (patch)
tree705091d4b797c9adbd29a257aef8d0f391434fb1 /python
parentpython/aqmp: split _client_connected_cb() out as _incoming() (diff)
downloadqemu-1b9c8cb6ce6b5c5911eb715b2d5b0a2671999dde.tar.gz
qemu-1b9c8cb6ce6b5c5911eb715b2d5b0a2671999dde.tar.xz
qemu-1b9c8cb6ce6b5c5911eb715b2d5b0a2671999dde.zip
python/aqmp: squelch pylint warning for too many lines
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>
Diffstat (limited to 'python')
-rw-r--r--python/qemu/aqmp/protocol.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/python/qemu/aqmp/protocol.py b/python/qemu/aqmp/protocol.py
index 56f05b9030..631bcdaa55 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