From 308d9dcf0d513838781d7c71280741243384b311 Mon Sep 17 00:00:00 2001 From: suraj-markup Date: Sun, 1 Mar 2026 19:23:58 +0530 Subject: [PATCH] fix(cli): remove unused Server import to fix lint error Co-Authored-By: Claude Opus 4.6 --- packages/cli/__tests__/commands/init.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/__tests__/commands/init.test.ts b/packages/cli/__tests__/commands/init.test.ts index 1681aca2e..c099ceeca 100644 --- a/packages/cli/__tests__/commands/init.test.ts +++ b/packages/cli/__tests__/commands/init.test.ts @@ -2,7 +2,7 @@ import { describe, it, expect, vi, afterEach } from "vitest"; import { mkdtempSync, writeFileSync, readFileSync, rmSync, existsSync } from "node:fs"; import { join } from "node:path"; import { tmpdir } from "node:os"; -import { createServer, type Server } from "node:net"; +import { createServer } from "node:net"; import { Command } from "commander"; import { parse as yamlParse } from "yaml";