From d9cf7b0088071c81edb02c14cc17b3801b96d9aa Mon Sep 17 00:00:00 2001 From: Mohd Kaif <98801504+KaifAhmad1@users.noreply.github.com> Date: Mon, 13 Apr 2026 17:46:14 +0530 Subject: [PATCH] Potential fix for pull request finding 'Unused global variable' Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> --- mcp/server.py | 1 - 1 file changed, 1 deletion(-) diff --git a/mcp/server.py b/mcp/server.py index cca06c96..371343a5 100644 --- a/mcp/server.py +++ b/mcp/server.py @@ -39,7 +39,6 @@ def _err(request_id: Any, code: int, message: str, data: Any = None) -> dict: # JSON-RPC error codes _PARSE_ERROR = -32700 -_INVALID_REQUEST = -32600 _METHOD_NOT_FOUND = -32601 _INVALID_PARAMS = -32602 _INTERNAL_ERROR = -32603