From 10a29d1bd5cff71e74eb5c4b87a560ab992f9cbf Mon Sep 17 00:00:00 2001 From: Jason Walker <913443@dadeschools.net> Date: Sat, 4 Jul 2026 14:57:21 -0400 Subject: [PATCH] style: remove trailing whitespace in mcp_server.py and test_runtime_clarity.py --- mcp_server.py | 6 +++--- tests/test_runtime_clarity.py | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/mcp_server.py b/mcp_server.py index b480686..d23f4bf 100644 --- a/mcp_server.py +++ b/mcp_server.py @@ -2320,7 +2320,7 @@ def gitea_list_profiles() -> dict: role = _role_kind(p["allowed_operations"], p["forbidden_operations"]) h = REMOTES.get("dadeschools", {}).get("host") # default host username = _authenticated_username(h) if h else None - + prof = { "name": p["profile_name"], "role_kind": role, @@ -2344,7 +2344,7 @@ def gitea_list_profiles() -> dict: for name, p in profiles_dict.items(): role = _role_kind(p.get("allowed_operations", []), p.get("forbidden_operations", [])) is_active = (name == active_name) - + # Identity status lookup if is_active: h = REMOTES.get("dadeschools", {}).get("host") # default host @@ -2468,7 +2468,7 @@ def gitea_activate_profile( # 3. Clear identity cache to force a fresh verification if h: _IDENTITY_CACHE.pop(h, None) - + # 4. Resolve fresh identity after_profile = get_profile()["profile_name"] after_identity = _authenticated_username(h) if h else None diff --git a/tests/test_runtime_clarity.py b/tests/test_runtime_clarity.py index 0f78259..f677ca1 100644 --- a/tests/test_runtime_clarity.py +++ b/tests/test_runtime_clarity.py @@ -132,7 +132,7 @@ class TestRuntimeClarity(unittest.TestCase): res = mcp_server.gitea_list_profiles() profiles = res["profiles"] self.assertEqual(len(profiles), 2) - + author_prof = next(p for p in profiles if p["name"] == "author-profile") self.assertTrue(author_prof["is_active"]) self.assertEqual(author_prof["role_kind"], "author") @@ -153,7 +153,7 @@ class TestRuntimeClarity(unittest.TestCase): with patch.dict(os.environ, self._env("author-profile", reveal="1"), clear=True): res = mcp_server.gitea_list_profiles() profiles = res["profiles"] - + author_prof = next(p for p in profiles if p["name"] == "author-profile") self.assertEqual(author_prof["auth"]["name"], "GITEA_TOKEN_AUTHOR") self.assertEqual(author_prof["base_url"], "https://gitea.example.com") @@ -173,7 +173,7 @@ class TestRuntimeClarity(unittest.TestCase): @patch("mcp_server.get_auth_header") def test_activate_profile_succeeds_when_enabled(self, mock_auth, mock_api): self._write_config(CONFIG_SWITCHING_ENABLED) - + # Setup mock responses for whoami checks mock_auth.side_effect = ["token author-pass", "token reviewer-pass"] mock_api.side_effect = [{"login": "author-user"}, {"login": "reviewer-user"}] @@ -181,15 +181,15 @@ class TestRuntimeClarity(unittest.TestCase): with patch.dict(os.environ, self._env("author-profile"), clear=True): # Check before state self.assertEqual(gitea_config.selected_profile_name(), "author-profile") - + res = mcp_server.gitea_activate_profile(profile_name="reviewer-profile") - + self.assertTrue(res["success"]) self.assertEqual(res["before_profile"], "author-profile") self.assertEqual(res["before_identity"], "author-user") self.assertEqual(res["after_profile"], "reviewer-profile") self.assertEqual(res["after_identity"], "reviewer-user") - + # Global variable override should be set self.assertEqual(gitea_config._active_profile_override, "reviewer-profile") self.assertEqual(gitea_config.selected_profile_name(), "reviewer-profile")