From 97971f3aef6bee9bc4401b4fb3d3fc7f6d27be43 Mon Sep 17 00:00:00 2001 From: Gustavo Madeira Santana Date: Sun, 18 Jan 2026 16:09:06 -0500 Subject: [PATCH] Remove unused import from run-main.ts Deleted the unused import of hasHelpOrVersion from argv.js to clean up the code. --- src/cli/run-main.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/cli/run-main.ts b/src/cli/run-main.ts index 431f5b702..0bb687947 100644 --- a/src/cli/run-main.ts +++ b/src/cli/run-main.ts @@ -8,7 +8,6 @@ import { ensureClawdbotCliOnPath } from "../infra/path-env.js"; import { assertSupportedRuntime } from "../infra/runtime-guard.js"; import { installUnhandledRejectionHandler } from "../infra/unhandled-rejections.js"; import { enableConsoleCapture } from "../logging.js"; -import { hasHelpOrVersion } from "./argv.js"; import { tryRouteCli } from "./route.js"; export function rewriteUpdateFlagArgv(argv: string[]): string[] {