diff options
author | Thomas Huth <thuth@redhat.com> | 2024-07-19 11:54:08 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2024-07-22 13:54:23 +0200 |
commit | 3b067b701d08ae292c4757caec81fc17dce69b11 (patch) | |
tree | 04528bdaee07f0c58c1e2de0aca466a7f776dd2c | |
parent | 816d4201ea8c926fddf766b37abc3e5ff03bb0dd (diff) | |
download | qemu-3b067b701d08ae292c4757caec81fc17dce69b11.zip qemu-3b067b701d08ae292c4757caec81fc17dce69b11.tar.gz qemu-3b067b701d08ae292c4757caec81fc17dce69b11.tar.bz2 |
tests/avocado/mem-addr-space-check: Remove unused "import signal"
The "signal" module is not used here, so we can remove this import
statement.
Message-ID: <20240719095408.33298-1-thuth@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
-rw-r--r-- | tests/avocado/mem-addr-space-check.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/avocado/mem-addr-space-check.py b/tests/avocado/mem-addr-space-check.py index 85541ea..d397459 100644 --- a/tests/avocado/mem-addr-space-check.py +++ b/tests/avocado/mem-addr-space-check.py @@ -9,7 +9,6 @@ # SPDX-License-Identifier: GPL-2.0-or-later from avocado_qemu import QemuSystemTest -import signal import time class MemAddrCheck(QemuSystemTest): |