Skip to content

Commit a349c65

Browse files
committed
fix errors
1 parent effd50d commit a349c65

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/features/creators/newPackageProject.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { LogOutputChannel, MarkdownString, window } from 'vscode';
1+
import { MarkdownString, window } from 'vscode';
22
import { PythonProject, PythonProjectCreator, PythonProjectCreatorOptions } from '../../api';
33
import { PythonProjectManager } from '../../internal.api';
44
// import { runInBackground } from '../execution/runInBackground';
@@ -9,7 +9,7 @@ export class NewPackageProject implements PythonProjectCreator {
99
public readonly description = 'Create a new Python package project';
1010
public readonly tooltip = new MarkdownString('Create a new Python package with proper structure');
1111

12-
constructor(private readonly pm: PythonProjectManager, private log: LogOutputChannel) {}
12+
constructor(private readonly pm: PythonProjectManager) {}
1313

1414
async create(_options?: PythonProjectCreatorOptions): Promise<PythonProject | undefined> {
1515
// show notification that the pkg creation was selected than return undefined

0 commit comments

Comments
 (0)