Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,8 @@ module = [
"langchain_text_splitters.*",
]
ignore_errors = true

[tool.coverage.run]
omit = [
"src/mcp_cli/chat/__main__.py", # legacy dead code – imports non-existent module
]
2 changes: 1 addition & 1 deletion src/mcp_cli/tools/execution.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""Parallel and streaming tool execution utilities.

Provides async-native parallel execution with callbacks for tool calls.
Uses chuk-tool-processor's ToolCall/ToolResult models.
Uses chuk-tool-processor's ToolCall/ToolResult models
"""

from __future__ import annotations
Expand Down
Loading
Loading