From 7605f895cf4499d94c40b666de62b9994e4e08e5 Mon Sep 17 00:00:00 2001 From: igor-ctrl Date: Mon, 4 May 2026 08:18:56 -0500 Subject: [PATCH] fix(ci): remove unused json import in test_mcp/test_runner.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Caught by `ruff check src/ tests/` in CI; my local pre-commit lint was src/-only. Import was a leftover — `json` only appears in the module docstring describing the wrapper's behavior, not in the test code. --- tests/test_mcp/test_runner.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_mcp/test_runner.py b/tests/test_mcp/test_runner.py index 58a7ac2..b226e86 100644 --- a/tests/test_mcp/test_runner.py +++ b/tests/test_mcp/test_runner.py @@ -8,7 +8,6 @@ from __future__ import annotations -import json import subprocess from unittest.mock import patch