Skip to content

Commit fbf9b66

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 31774a0 commit fbf9b66

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

health_check/contrib/redis.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@ def __repr__(self):
6464
try:
6565
safe_connection_str = ", ".join(
6666
f"{key}={value!r}"
67-
for key, value in sorted(client.connection_pool.connection_kwargs.items())
67+
for key, value in sorted(
68+
client.connection_pool.connection_kwargs.items()
69+
)
6870
if key in {"host", "db"}
6971
)
7072
return f"Redis({safe_connection_str})"

0 commit comments

Comments
 (0)