From: John Snow Date: Fri, 25 Feb 2022 20:59:43 +0000 (-0500) Subject: python/aqmp: squelch pylint warning for too many lines X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=1b9c8cb6ce6b5c5911eb715b2d5b0a2671999dde;p=qemu.git 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 Acked-by: Kevin Wolf Reviewed-by: Daniel P. Berrangé Message-id: 20220225205948.3693480-6-jsnow@redhat.com Signed-off-by: John Snow --- 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