summaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorWainer dos Santos Moschetta2019-12-16 20:14:38 +0100
committerCleber Rosa2019-12-17 00:39:51 +0100
commite42cb9678cee7ff7c28afe7917c1002d6d8fdc0d (patch)
tree8b55bc23ec97a4eff4daf7be19d981f072c0993e /python
parentpython/qemu: accel: Add tcg_available() method (diff)
downloadqemu-e42cb9678cee7ff7c28afe7917c1002d6d8fdc0d.tar.gz
qemu-e42cb9678cee7ff7c28afe7917c1002d6d8fdc0d.tar.xz
qemu-e42cb9678cee7ff7c28afe7917c1002d6d8fdc0d.zip
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 <wainersm@redhat.com> Suggested-by: Cleber Rosa <crosa@redhat.com> Reviewed-by: Cleber Rosa <crosa@redhat.com> Tested-by: Cleber Rosa <crosa@redhat.com> Message-Id: <20191216191438.93418-6-wainersm@redhat.com> Signed-off-by: Cleber Rosa <crosa@redhat.com>
Diffstat (limited to 'python')
-rw-r--r--python/qemu/__init__.py6
1 files changed, 0 insertions, 6 deletions
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