From 7454e665335c7f35d3fa99ceddb194bbd2d3e439 Mon Sep 17 00:00:00 2001 From: Colin McDonnell Date: Wed, 25 Mar 2026 22:50:52 +0000 Subject: [PATCH] fix import ordering in opentoad agent Made-with: Cursor --- agents/opentoad.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agents/opentoad.ts b/agents/opentoad.ts index 7e4b897..3a4a3c6 100644 --- a/agents/opentoad.ts +++ b/agents/opentoad.ts @@ -21,8 +21,8 @@ import { log } from "../utils/cli.ts"; import { installFromNpmTarball } from "../utils/install.ts"; import { spawn } from "../utils/subprocess.ts"; import { ThinkingTimer } from "../utils/timer.ts"; -import { getDevDependencyVersion } from "../utils/version.ts"; import type { TodoTracker } from "../utils/todoTracking.ts"; +import { getDevDependencyVersion } from "../utils/version.ts"; import { type AgentResult, type AgentRunContext, type AgentUsage, agent } from "./shared.ts"; async function installOpencodeCli(): Promise {