From 82120060ba8e55cd6c915cd1f28c7ed2271c09be Mon Sep 17 00:00:00 2001 From: Ed_ Date: Wed, 13 May 2026 09:03:27 -0400 Subject: [PATCH] organize imports in mcp client. --- src/mcp_client.py | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/src/mcp_client.py b/src/mcp_client.py index 1bad57e..4bede8d 100644 --- a/src/mcp_client.py +++ b/src/mcp_client.py @@ -52,21 +52,21 @@ See Also: #MCP-style file context tools for manual_slop. from __future__ import annotations +import ast import asyncio import json -from src import models +import os +import re as _re +import subprocess +from html.parser import HTMLParser from pathlib import Path from typing import Optional, Callable, Any, cast -import os -import ast -import subprocess -from src import summarize -from src import outline_tool -from src import beads_client import urllib.request import urllib.parse -from html.parser import HTMLParser -import re as _re +from src import beads_client +from src import models +from src import outline_tool +from src import summarize # ------------------------------------------------------------------ mutating tools sentinel @@ -2186,6 +2186,3 @@ MCP_TOOL_SPECS: list[dict[str, Any]] = [ ] TOOL_NAMES: set[str] = {t['name'] for t in MCP_TOOL_SPECS} - - -