diff options
author | John Snow | 2020-10-07 01:57:58 +0200 |
---|---|---|
committer | John Snow | 2020-10-20 15:37:57 +0200 |
commit | 932ca4bbde5ed6c57a8ae0b9cabb6e0a1ca1047a (patch) | |
tree | 80ae2de74a160456be78bbdfcc6f10a6e5bd5589 /python/qemu/console_socket.py | |
parent | MAINTAINERS: Add Python library stanza (diff) | |
download | qemu-932ca4bbde5ed6c57a8ae0b9cabb6e0a1ca1047a.tar.gz qemu-932ca4bbde5ed6c57a8ae0b9cabb6e0a1ca1047a.tar.xz qemu-932ca4bbde5ed6c57a8ae0b9cabb6e0a1ca1047a.zip |
python/qemu: use isort to lay out imports
Borrowed from the QAPI cleanup series, use the same configuration to
standardize the way we write and sort imports.
Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Message-id: 20201006235817.3280413-2-jsnow@redhat.com
Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'python/qemu/console_socket.py')
-rw-r--r-- | python/qemu/console_socket.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/qemu/console_socket.py b/python/qemu/console_socket.py index 70869fbbdc..69f604c77f 100644 --- a/python/qemu/console_socket.py +++ b/python/qemu/console_socket.py @@ -13,9 +13,9 @@ which can drain a socket and optionally dump the bytes to file. # the COPYING file in the top-level directory. # +from collections import deque import socket import threading -from collections import deque import time |