From 3e4fa1e2022970dee003bea0932ea0c10f8744ba Mon Sep 17 00:00:00 2001 From: Andrei Zeliankou Date: Thu, 25 May 2023 14:26:12 +0100 Subject: Tests: removed unused variables. --- test/test_respawn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/test_respawn.py') diff --git a/test/test_respawn.py b/test/test_respawn.py index 3d3dfac3..00271503 100644 --- a/test/test_respawn.py +++ b/test/test_respawn.py @@ -30,7 +30,7 @@ class TestRespawn(TestApplicationPython): subprocess.call(['kill', '-9', *pids]) def wait_for_process(self, process, unit_pid): - for i in range(50): + for _ in range(50): found = self.pid_by_name(process, unit_pid) if found is not None: -- cgit