summary refs log tree commit diff stats
path: root/python/qemu/qmp/util.py
diff options
context:
space:
mode:
authorJohn Snow <jsnow@redhat.com>2022-05-25 20:09:13 -0400
committerPaolo Bonzini <pbonzini@redhat.com>2022-06-06 09:26:54 +0200
commite7874a50ff3f5b20fb46f36958ad88334e4d55cd (patch)
tree0de33531bf3a842e262238509ed3ce762f2d3431 /python/qemu/qmp/util.py
parentd7caf13b5fcf742e5680c1d3448ba070fc811644 (diff)
downloadfocaccia-qemu-e7874a50ff3f5b20fb46f36958ad88334e4d55cd.tar.gz
focaccia-qemu-e7874a50ff3f5b20fb46f36958ad88334e4d55cd.zip
python: update for mypy 0.950
typeshed (included in mypy) recently updated to improve the typing for
WriteTransport objects. I was working around this, but now there's a
version where I shouldn't work around it.

Unfortunately this creates some minor ugliness if I want to support both
pre- and post-0.950 versions. For now, for my sanity, just disable the
unused-ignores warning.

Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20220526000921.1581503-2-jsnow@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'python/qemu/qmp/util.py')
-rw-r--r--python/qemu/qmp/util.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/python/qemu/qmp/util.py b/python/qemu/qmp/util.py
index eaa5fc7d5f..ca6225e9cd 100644
--- a/python/qemu/qmp/util.py
+++ b/python/qemu/qmp/util.py
@@ -40,7 +40,9 @@ async def flush(writer: asyncio.StreamWriter) -> None:
     drain. The flow control limits are restored after the call is
     completed.
     """
-    transport = cast(asyncio.WriteTransport, writer.transport)
+    transport = cast(  # type: ignore[redundant-cast]
+        asyncio.WriteTransport, writer.transport
+    )
 
     # https://github.com/python/typeshed/issues/5779
     low, high = transport.get_write_buffer_limits()  # type: ignore