Fix Codex supervise MCP registration #248

Merged
didericis merged 12 commits from fix-codex-mcp-supervise-transport into main 2026-06-23 16:42:20 -04:00
Showing only changes of commit ebbb4053cf - Show all commits
+1 -1
View File
@@ -73,7 +73,7 @@ class TestApplyRoutesChange(unittest.TestCase):
def test_writes_live_routes_and_signals_reload(self):
calls: list[list[str]] = []
def fake_run(argv, **kwargs):
def fake_run(argv: list[str], **kwargs: object) -> SimpleNamespace:
calls.append(list(argv))
return SimpleNamespace(returncode=0, stdout="", stderr="")