From 973c061b314bfee2597c9abdf7d48ea6dc110caa Mon Sep 17 00:00:00 2001 From: Kashyap Murali Date: Tue, 2 Sep 2025 17:20:46 -0700 Subject: [PATCH] fix: Remove blank line whitespace (ruff W293) --- src/claude_code_sdk/_internal/query.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/claude_code_sdk/_internal/query.py b/src/claude_code_sdk/_internal/query.py index 7e4e849..9d6139a 100644 --- a/src/claude_code_sdk/_internal/query.py +++ b/src/claude_code_sdk/_internal/query.py @@ -316,7 +316,7 @@ class Query: try: # For now, we'll use a simpler approach without MCP SDK types # This avoids import issues in CI where mcp package isn't installed - + # Route based on method string directly if method == "tools/list": # Try to get the handler - it should handle the raw request @@ -338,7 +338,7 @@ class Query: else: tool_dict["inputSchema"] = {} tools_data.append(tool_dict) - + return { "jsonrpc": "2.0", "id": message.get("id"), @@ -353,7 +353,7 @@ class Query: params.get("name"), params.get("arguments", {}) ) - + # Format the response content = [] if hasattr(result, 'content'):