File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1- import { LogOutputChannel , MarkdownString , window } from 'vscode' ;
1+ import { MarkdownString , window } from 'vscode' ;
22import { PythonProject , PythonProjectCreator , PythonProjectCreatorOptions } from '../../api' ;
33import { 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
You can’t perform that action at this time.
0 commit comments