From 8678da50f2014407b8789845c705eefafe3293e5 Mon Sep 17 00:00:00 2001 From: Ary Borenszweig Date: Mon, 6 Jan 2025 16:43:27 -0300 Subject: [PATCH] Remove unused imports --- src/debugger.ts | 3 +-- src/extension.ts | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/debugger.ts b/src/debugger.ts index 8d98294..1f543d3 100644 --- a/src/debugger.ts +++ b/src/debugger.ts @@ -1,7 +1,6 @@ import { debug, window, - workspace, DebugAdapterDescriptorFactory, DebugSession, DebugAdapterExecutable, @@ -15,7 +14,7 @@ import { } from 'vscode'; import { spawn } from 'child_process'; -import findNargo, { getNargoPath } from './find-nargo'; +import { getNargoPath } from './find-nargo'; import findNearestPackageFrom from './find-nearest-package'; let outputChannel: OutputChannel; diff --git a/src/extension.ts b/src/extension.ts index 4220e99..d53486f 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -42,7 +42,7 @@ import { activateDebugger } from './debugger'; import { languageId } from './constants'; import Client from './client'; -import findNargo, { findNargoBinaries, getNargoPath } from './find-nargo'; +import { findNargoBinaries, getNargoPath } from './find-nargo'; import { lspClients, editorLineDecorationManager } from './noir'; import { getNoirStatusBarItem, handleClientStartError } from './noir';