From: Wainer dos Santos Moschetta Date: Mon, 16 Dec 2019 19:14:38 +0000 (-0300) Subject: python/qemu: Remove unneeded imports in __init__ X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e42cb9678cee7ff7c28afe7917c1002d6d8fdc0d;p=qemu.git python/qemu: Remove unneeded imports in __init__ __init_.py import some sub-modules unnecessarily. So let's clean it up. Signed-off-by: Wainer dos Santos Moschetta Suggested-by: Cleber Rosa Reviewed-by: Cleber Rosa Tested-by: Cleber Rosa Message-Id: <20191216191438.93418-6-wainersm@redhat.com> Signed-off-by: Cleber Rosa --- diff --git a/python/qemu/__init__.py b/python/qemu/__init__.py index eff17a306e..4ca06c34a4 100644 --- a/python/qemu/__init__.py +++ b/python/qemu/__init__.py @@ -9,9 +9,3 @@ # This work is licensed under the terms of the GNU GPL, version 2. See # the COPYING file in the top-level directory. # -# Based on qmp.py. -# - -from . import qmp -from . import machine -from . import accel