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>
This commit is contained in:
John Snow 2020-10-06 19:57:58 -04:00
parent b8eaee96e4
commit 932ca4bbde
6 changed files with 19 additions and 11 deletions

View file

@ -20,15 +20,15 @@ which provides facilities for managing the lifetime of a QEMU VM.
import errno
import logging
import os
import subprocess
import shutil
import signal
import subprocess
import tempfile
from typing import Optional, Type
from types import TracebackType
from . import console_socket
from typing import Optional, Type
from . import console_socket, qmp
from . import qmp
LOG = logging.getLogger(__name__)