From 4c7c5db4cf7f8ddab54a2881eb2d758a9ecd0409 Mon Sep 17 00:00:00 2001 From: vladvildanov Date: Thu, 9 Jan 2025 11:46:29 +0200 Subject: [PATCH] Sorted imports --- redis/asyncio/cluster.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/redis/asyncio/cluster.py b/redis/asyncio/cluster.py index 491113ca60..87a2c16afa 100644 --- a/redis/asyncio/cluster.py +++ b/redis/asyncio/cluster.py @@ -64,12 +64,7 @@ TryAgainError, ) from redis.typing import AnyKeyT, EncodableT, KeyT -from redis.utils import ( - deprecated_function, - get_lib_version, - safe_str, - str_if_bytes, -) +from redis.utils import deprecated_function, get_lib_version, safe_str, str_if_bytes TargetNodesT = TypeVar( "TargetNodesT", str, "ClusterNode", List["ClusterNode"], Dict[Any, "ClusterNode"]