From 5233eb7fdbd30b2244f75f75e6b1a27f4a9186c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 20 Aug 2025 16:36:12 +0200 Subject: [PATCH] ARG002: fix --- lib/test/container-test-driver/test_driver/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/test/container-test-driver/test_driver/__init__.py b/lib/test/container-test-driver/test_driver/__init__.py index 197783a55..718891dc2 100644 --- a/lib/test/container-test-driver/test_driver/__init__.py +++ b/lib/test/container-test-driver/test_driver/__init__.py @@ -294,8 +294,8 @@ class Machine: def execute( self, command: str, - check_return: bool = True, - check_output: bool = True, + check_return: bool = True, # noqa: ARG002 + check_output: bool = True, # noqa: ARG002 timeout: int | None = 900, ) -> subprocess.CompletedProcess: """Execute a shell command, returning a list `(status, stdout)`.