Skip to content

Commit 5f86d98

Browse files
authored
add type Any to connection_kwargs
1 parent cbabe8a commit 5f86d98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redis/asyncio/cluster.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -749,7 +749,7 @@ def __init__(
749749
max_connections: int = 2 ** 31,
750750
connection_class: Type[Connection] = Connection,
751751
response_callbacks: Dict = RedisCluster.RESPONSE_CALLBACKS,
752-
**connection_kwargs,
752+
**connection_kwargs: Any,
753753
) -> None:
754754
if host == "localhost":
755755
host = socket.gethostbyname(host)

0 commit comments

Comments
 (0)