Skip to content

Commit

Permalink
fix: cleanup unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
fannheyward committed Aug 25, 2023
1 parent f1098ed commit 1c6fc1e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/features/formatters/baseFormatter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import fs from 'fs';
import md5 from 'md5';
import path from 'path';
import { SemVer } from 'semver';
import { promisify } from 'util';
import which from 'which';
import { isNotInstalledError, PythonExecutionService } from '../../processService';
import { ExecutionInfo, FormatterId, IPythonSettings } from '../../types';
Expand Down
6 changes: 3 additions & 3 deletions src/features/refactor.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { ChildProcess } from 'child_process';
import { commands, Disposable, Document, OutputChannel, Position, Range, TextDocument, Uri, window, workspace } from 'coc.nvim';
import { Disposable, Document, OutputChannel, Position, Range, TextDocument, Uri, window, workspace } from 'coc.nvim';
import * as path from 'path';
import { Deferred, createDeferred } from '../async';
import { getWindowsLineEndingCount, splitLines, getTextEditsFromPatch } from '../utils';
import { createDeferred, Deferred } from '../async';
import { PythonSettings } from '../configSettings';
import { PythonExecutionService } from '../processService';
import { IPythonSettings } from '../types';
import { getTextEditsFromPatch, getWindowsLineEndingCount, splitLines } from '../utils';

class RefactorProxy implements Disposable {
protected readonly isWindows = process.platform === 'win32';
Expand Down

0 comments on commit 1c6fc1e

Please sign in to comment.