diff mbox series

tests/avocado/mem-addr-space-check: Remove unused "import signal"

Message ID 20240719095408.33298-1-thuth@redhat.com (mailing list archive)
State New, archived
Headers show
Series tests/avocado/mem-addr-space-check: Remove unused "import signal" | expand

Commit Message

Thomas Huth July 19, 2024, 9:54 a.m. UTC
The "signal" module is not used here, so we can remove this import
statement.

Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 tests/avocado/mem-addr-space-check.py | 1 -
 1 file changed, 1 deletion(-)

Comments

Daniel P. Berrangé July 19, 2024, 10:02 a.m. UTC | #1
On Fri, Jul 19, 2024 at 11:54:08AM +0200, Thomas Huth wrote:
> The "signal" module is not used here, so we can remove this import
> statement.
> 
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
>  tests/avocado/mem-addr-space-check.py | 1 -
>  1 file changed, 1 deletion(-)

Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>

With regards,
Daniel
Philippe Mathieu-Daudé July 19, 2024, 12:47 p.m. UTC | #2
On 19/7/24 11:54, Thomas Huth wrote:
> The "signal" module is not used here, so we can remove this import
> statement.
> 
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
>   tests/avocado/mem-addr-space-check.py | 1 -
>   1 file changed, 1 deletion(-)

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
diff mbox series

Patch

diff --git a/tests/avocado/mem-addr-space-check.py b/tests/avocado/mem-addr-space-check.py
index 85541ea051..d3974599f4 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):