Skip to content

Commit 1087770

Browse files
committed
Revert unintended formatting change
1 parent 67c9b32 commit 1087770

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redis/connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1288,7 +1288,7 @@ class initializer. In the case of conflicting arguments, querystring
12881288
def __init__(
12891289
self, connection_class=Connection, max_connections=None, **connection_kwargs
12901290
):
1291-
max_connections = max_connections or 2**31
1291+
max_connections = max_connections or 2 ** 31
12921292
if not isinstance(max_connections, int) or max_connections < 0:
12931293
raise ValueError('"max_connections" must be a positive integer')
12941294

0 commit comments

Comments
 (0)