File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import { Command } from "./command.mjs";
22import Logger from "../logger.mjs" ;
33import { window , type Uri } from "vscode" ;
44import { NewProjectPanel } from "../webview/newProjectPanel.mjs" ;
5+ // eslint-disable-next-line max-len
56import { NewMicroPythonProjectPanel } from "../webview/newMicroPythonProjectPanel.mjs" ;
67
78/**
Original file line number Diff line number Diff line change @@ -22,8 +22,6 @@ import {
2222import which from "which" ;
2323import { existsSync } from "fs" ;
2424import { join } from "path" ;
25- import { pyenvInstallPython , setupPyenv } from "../utils/pyenvUtil.mts" ;
26- import { downloadEmbedPython } from "../utils/download.mts" ;
2725
2826interface SubmitMessageValue {
2927 projectName : string ;
@@ -307,7 +305,7 @@ while True:
307305 except KeyboardInterrupt:
308306 break
309307pin.off()
310- print("Finished.")` ;
308+ print("Finished.")\r\n ` ;
311309 const filePath = join ( projectFolder , "blink.py" ) ;
312310 await workspace . fs . writeFile (
313311 Uri . file ( filePath ) ,
You can’t perform that action at this time.
0 commit comments