aboutsummaryrefslogtreecommitdiff
path: root/python/qemu/utils/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/qemu/utils/__init__.py')
-rw-r--r--python/qemu/utils/__init__.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/python/qemu/utils/__init__.py b/python/qemu/utils/__init__.py
index 017cfdc..be5daa8 100644
--- a/python/qemu/utils/__init__.py
+++ b/python/qemu/utils/__init__.py
@@ -23,13 +23,19 @@ import textwrap
from typing import Optional
# pylint: disable=import-error
-from .accel import kvm_available, list_accel, tcg_available
+from .accel import (
+ hvf_available,
+ kvm_available,
+ list_accel,
+ tcg_available,
+)
__all__ = (
'VerboseProcessError',
'add_visual_margin',
'get_info_usernet_hostfwd_port',
+ 'hvf_available',
'kvm_available',
'list_accel',
'tcg_available',