Skip to content

Commit 0cb3747

Browse files
committed
Fix imports
Signed-off-by: paulober <[email protected]>
1 parent 52e866c commit 0cb3747

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/commands/newProject.mts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { Command } from "./command.mjs";
22
import Logger from "../logger.mjs";
33
import { window, type Uri } from "vscode";
44
import { NewProjectPanel } from "../webview/newProjectPanel.mjs";
5+
// eslint-disable-next-line max-len
56
import { NewMicroPythonProjectPanel } from "../webview/newMicroPythonProjectPanel.mjs";
67

78
/**

src/webview/newMicroPythonProjectPanel.mts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ import {
2222
import which from "which";
2323
import { existsSync } from "fs";
2424
import { join } from "path";
25-
import { pyenvInstallPython, setupPyenv } from "../utils/pyenvUtil.mts";
26-
import { downloadEmbedPython } from "../utils/download.mts";
2725

2826
interface SubmitMessageValue {
2927
projectName: string;
@@ -307,7 +305,7 @@ while True:
307305
except KeyboardInterrupt:
308306
break
309307
pin.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),

0 commit comments

Comments
 (0)