From d632e1aa7a53fe47dcf7fffc71bfb56e32be5f92 Mon Sep 17 00:00:00 2001 From: Alejo Sanchez Date: Wed, 4 Jan 2023 21:28:20 +0100 Subject: [PATCH] test/pytest: add missing import, remove unused import Add missed import time and remove unused name import. Signed-off-by: Alejo Sanchez Closes #12446 --- test/pylib/manager_client.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/pylib/manager_client.py b/test/pylib/manager_client.py index ccdda5df50..a99e546f89 100644 --- a/test/pylib/manager_client.py +++ b/test/pylib/manager_client.py @@ -9,7 +9,8 @@ Manages driver refresh when cluster is cycled. """ -from typing import List, Optional, Callable, NamedTuple, Any +from typing import List, Optional, Callable, Any +from time import time import logging from test.pylib.rest_client import UnixRESTClient, ScyllaRESTAPIClient from test.pylib.util import wait_for