]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
python/aqmp: squelch pylint warning for too many lines
authorJohn Snow <jsnow@redhat.com>
Fri, 25 Feb 2022 20:59:43 +0000 (15:59 -0500)
committerJohn Snow <jsnow@redhat.com>
Mon, 7 Mar 2022 19:36:41 +0000 (14:36 -0500)
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>
python/qemu/aqmp/protocol.py

index 56f05b90308c44a86d0978fd2ce60dd496824780..631bcdaa554f4a104af4e25a3c61c364be9edc0e 100644 (file)
@@ -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