From 173df37f3a2df9cfe4395fb960981e031e5f5a9d Mon Sep 17 00:00:00 2001 From: John Lee Date: Mon, 1 Jun 2026 18:01:48 +0800 Subject: [PATCH] Potential fix for code scanning alert no. 30: Clear-text logging of sensitive information Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --- teaagent/mcp_trust.py | 1 - 1 file changed, 1 deletion(-) diff --git a/teaagent/mcp_trust.py b/teaagent/mcp_trust.py index aaaff33..154d824 100644 --- a/teaagent/mcp_trust.py +++ b/teaagent/mcp_trust.py @@ -42,7 +42,6 @@ def to_dict(self) -> dict[str, Any]: name: { 'allowed_tools': list(server.allowed_tools), 'denied_tools': list(server.denied_tools), - 'trusted': server.trusted, 'expires_at': server.expires_at, } for name, server in self.servers.items()