From c54dfa49dda6a7b3389dc230726293af3ffc68a3 Mon Sep 17 00:00:00 2001 From: Utkarsh Gupta Date: Mon, 30 May 2022 20:05:19 +0530 Subject: update black to 22.3.0 (#2171) --- redis/asyncio/connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'redis/asyncio/connection.py') diff --git a/redis/asyncio/connection.py b/redis/asyncio/connection.py index d9b0974..38465fc 100644 --- a/redis/asyncio/connection.py +++ b/redis/asyncio/connection.py @@ -1390,7 +1390,7 @@ class ConnectionPool: max_connections: Optional[int] = None, **connection_kwargs, ): - max_connections = max_connections or 2 ** 31 + max_connections = max_connections or 2**31 if not isinstance(max_connections, int) or max_connections < 0: raise ValueError('"max_connections" must be a positive integer') -- cgit v1.2.1