Skip to content

Commit ac77634

Browse files
committed
fix: format stop() signature to satisfy line length lint
1 parent 198df55 commit ac77634

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

src/strands/tools/mcp/mcp_client.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,12 @@ def remove_consumer(self, consumer_id: Any, **kwargs: Any) -> None:
323323

324324
# MCP-specific methods
325325

326-
def stop(self, exc_type: type[BaseException] | None, exc_val: BaseException | None, exc_tb: TracebackType | None) -> None:
326+
def stop(
327+
self,
328+
exc_type: type[BaseException] | None,
329+
exc_val: BaseException | None,
330+
exc_tb: TracebackType | None,
331+
) -> None:
327332
"""Signals the background thread to stop and waits for it to complete, ensuring proper cleanup of all resources.
328333
329334
This method is defensive and can handle partial initialization states that may occur

0 commit comments

Comments
 (0)