This repository was archived by the owner on Dec 23, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 3
3
4
4
import * as cp from "child_process" ;
5
5
import * as fs from "fs" ;
6
+ import { registerDefaultFontFaces } from "office-ui-fabric-react" ;
6
7
import * as open from "open" ;
7
8
import * as os from "os" ;
8
9
import * as path from "path" ;
@@ -25,13 +26,12 @@ import * as utils from "./extension_utils/utils";
25
26
import { SerialMonitor } from "./serialMonitor" ;
26
27
import { DebuggerCommunicationService } from "./service/debuggerCommunicationService" ;
27
28
import { MessagingService } from "./service/messagingService" ;
29
+ import { PopupService } from "./service/PopupService" ;
28
30
import { SimulatorDebugConfigurationProvider } from "./simulatorDebugConfigurationProvider" ;
31
+ import getPackageInfo from "./telemetry/getPackageInfo" ;
29
32
import TelemetryAI from "./telemetry/telemetryAI" ;
30
33
import { UsbDetector } from "./usbDetector" ;
31
34
import { VSCODE_MESSAGES_TO_WEBVIEW , WEBVIEW_MESSAGES } from "./view/constants" ;
32
- import { PopupService } from "./service/PopupService" ;
33
- import getPackageInfo from "./telemetry/getPackageInfo" ;
34
- import { registerDefaultFontFaces } from "office-ui-fabric-react" ;
35
35
36
36
let currentFileAbsPath : string = "" ;
37
37
let currentTextDocument : vscode . TextDocument ;
Original file line number Diff line number Diff line change @@ -561,7 +561,7 @@ export const setupEnv = async (
561
561
) => {
562
562
const originalpythonExecutablePath = await getCurrentpythonExecutablePath ( ) ;
563
563
let pythonExecutablePath = originalpythonExecutablePath ;
564
- let pythonExecutableName : string =
564
+ const pythonExecutableName : string =
565
565
os . platform ( ) === "win32"
566
566
? HELPER_FILES . PYTHON_EXE
567
567
: HELPER_FILES . PYTHON ;
Original file line number Diff line number Diff line change 3
3
4
4
import * as React from "react" ;
5
5
import { VIEW_STATE } from "../../constants" ;
6
- import { ViewStateContext } from "../../context" ;
7
6
import CONSTANTS , { MICROBIT_BUTTON_STYLING_CLASSES } from "../../constants" ;
7
+ import { ViewStateContext } from "../../context" ;
8
8
import "../../styles/Microbit.css" ;
9
9
import { IRefObject , MicrobitSvg } from "./Microbit_svg" ;
10
10
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import StopLogo from "../../svgs/stop_svg";
10
10
import { sendMessage } from "../../utils/MessageUtils" ;
11
11
import Dropdown from "../Dropdown" ;
12
12
import ActionBar from "../simulator/ActionBar" ;
13
- import { MicrobitImage , BUTTONS_KEYS } from "./MicrobitImage" ;
13
+ import { BUTTONS_KEYS , MicrobitImage } from "./MicrobitImage" ;
14
14
15
15
const DEFAULT_MICROBIT_STATE : IMicrobitState = {
16
16
leds : [
You can’t perform that action at this time.
0 commit comments