summary refs log tree commit diff stats
path: root/python/qemu
diff options
context:
space:
mode:
authorJohn Snow <jsnow@redhat.com>2020-10-06 19:58:11 -0400
committerJohn Snow <jsnow@redhat.com>2020-10-20 09:37:57 -0400
commit714ac05a1996c0adf2740bce935f790d8824ea9e (patch)
tree34c4beb90b1a662120ac60e8a622de8a65bc81e5 /python/qemu
parent6cf4cce7cb489fb5ed7eb72124f6b0c422155ebc (diff)
downloadfocaccia-qemu-714ac05a1996c0adf2740bce935f790d8824ea9e.tar.gz
focaccia-qemu-714ac05a1996c0adf2740bce935f790d8824ea9e.zip
python/qemu/console_socket.py: Clarify type of drain_thread
Mypy needs just a little help to guess the type here.

Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Message-id: 20201006235817.3280413-15-jsnow@redhat.com
Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'python/qemu')
-rw-r--r--python/qemu/console_socket.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/python/qemu/console_socket.py b/python/qemu/console_socket.py
index 3945682506..d4669c441d 100644
--- a/python/qemu/console_socket.py
+++ b/python/qemu/console_socket.py
@@ -41,10 +41,9 @@ class ConsoleSocket(socket.socket):
         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."""