Skip to content

Commit e5938d4

Browse files
committed
format
1 parent b2893e6 commit e5938d4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/mcp/server/message_queue/redis.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,9 @@ async def _listen_for_messages(self) -> None:
107107
channel: str = cast(str, message["channel"])
108108
session_id = self._extract_session_id(channel)
109109
if session_id is None:
110-
logger.debug(f"Ignoring message from non-MCP channel: {channel}")
110+
logger.debug(
111+
f"Ignoring message from non-MCP channel: {channel}"
112+
)
111113
continue
112114

113115
data: str = cast(str, message["data"])

0 commit comments

Comments
 (0)