Skip to content

Commit

Permalink
Remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
asterite committed Jan 6, 2025
1 parent 2aacc16 commit 8678da5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/debugger.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import {
debug,
window,
workspace,
DebugAdapterDescriptorFactory,
DebugSession,
DebugAdapterExecutable,
Expand All @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down

0 comments on commit 8678da5

Please sign in to comment.