diff options
| author | John Snow <jsnow@redhat.com> | 2023-02-09 19:31:41 -0500 |
|---|---|---|
| committer | John Snow <jsnow@redhat.com> | 2023-02-22 23:35:03 -0500 |
| commit | aef633e76504f6f2f3be47a22b271ce6469c0d9d (patch) | |
| tree | 3ec6a17f9b0f3f6314cdc8428dad6097f006a43e /python/qemu/qmp | |
| parent | 79b677d658d3d35e1e776826ac4abb28cdce69b8 (diff) | |
| download | focaccia-qemu-aef633e76504f6f2f3be47a22b271ce6469c0d9d.tar.gz focaccia-qemu-aef633e76504f6f2f3be47a22b271ce6469c0d9d.zip | |
python: support pylint 2.16
Pylint 2.16 adds a few new checks that cause the optional check-tox CI job to fail. 1. The superfluous-parens check seems to be a bit more aggressive, 2. broad-exception-raised is new; it discourages "raise Exception". Fix these minor issues and turn the lights green. Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Beraldo Leal <bleal@redhat.com> Message-id: 20230210003147.1309376-2-jsnow@redhat.com Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'python/qemu/qmp')
| -rw-r--r-- | python/qemu/qmp/protocol.py | 2 | ||||
| -rw-r--r-- | python/qemu/qmp/qmp_client.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/python/qemu/qmp/protocol.py b/python/qemu/qmp/protocol.py index 6d3d739daa..22e60298d2 100644 --- a/python/qemu/qmp/protocol.py +++ b/python/qemu/qmp/protocol.py @@ -207,7 +207,7 @@ class AsyncProtocol(Generic[T]): logger = logging.getLogger(__name__) # Maximum allowable size of read buffer - _limit = (64 * 1024) + _limit = 64 * 1024 # ------------------------- # Section: Public interface diff --git a/python/qemu/qmp/qmp_client.py b/python/qemu/qmp/qmp_client.py index b5772e7f32..9d73ae6e7a 100644 --- a/python/qemu/qmp/qmp_client.py +++ b/python/qemu/qmp/qmp_client.py @@ -198,7 +198,7 @@ class QMPClient(AsyncProtocol[Message], Events): logger = logging.getLogger(__name__) # Read buffer limit; 10MB like libvirt default - _limit = (10 * 1024 * 1024) + _limit = 10 * 1024 * 1024 # Type alias for pending execute() result items _PendingT = Union[Message, ExecInterruptedError] |