[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 14/20] python/qemu/console_socket.py: Clarify type of drain_threa
From: |
John Snow |
Subject: |
[PATCH 14/20] python/qemu/console_socket.py: Clarify type of drain_thread |
Date: |
Tue, 6 Oct 2020 19:58:11 -0400 |
Mypy needs just a little help to guess the type here.
Signed-off-by: John Snow <jsnow@redhat.com>
---
python/qemu/console_socket.py | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/python/qemu/console_socket.py b/python/qemu/console_socket.py
index 39456825064..d4669c441d0 100644
--- a/python/qemu/console_socket.py
+++ b/python/qemu/console_socket.py
@@ -41,10 +41,9 @@ def __init__(self, address, file=None, drain=False):
if file:
self._logfile = open(file, "w")
self._open = True
+ self._drain_thread = None
if drain:
self._drain_thread = self._thread_start()
- else:
- self._drain_thread = None
def _drain_fn(self):
"""Drains the socket and runs while the socket is open."""
--
2.26.2
- Re: [PATCH 09/20] python/qemu: make 'args' style arguments immutable, (continued)
- [PATCH 10/20] iotests.py: Adjust HMP kwargs typing, John Snow, 2020/10/06
- [PATCH 11/20] python/qemu: Add mypy type annotations, John Snow, 2020/10/06
- [PATCH 12/20] python/qemu/console_socket.py: Correct type of recv(), John Snow, 2020/10/06
- [PATCH 13/20] python/qemu/console_socket.py: fix typing of settimeout, John Snow, 2020/10/06
- [PATCH 14/20] python/qemu/console_socket.py: Clarify type of drain_thread,
John Snow <=
- [PATCH 15/20] python/qemu/console_socket.py: Add type hint annotations, John Snow, 2020/10/06
- [PATCH 16/20] python/console_socket: avoid encoding to/from string, John Snow, 2020/10/06
- [PATCH 17/20] python/qemu/qmp.py: Preserve error context on re-raise, John Snow, 2020/10/06
- [PATCH 19/20] python/qemu/qmp.py: Straighten out exception hierarchy, John Snow, 2020/10/06