Skip to content

Commit

Permalink
use new class
Browse files Browse the repository at this point in the history
  • Loading branch information
Almenon committed Jun 3, 2024
1 parent d71d7c4 commit 4f819dd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/PreviewManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default class PreviewManager {
reporter: Reporter;
disposable: vscode.Disposable;
pythonEditorDoc: vscode.TextDocument;
PythonExecutor: PythonExecutor;
PythonExecutor: PythonExecutors;
runningStatus: vscode.StatusBarItem;
toAREPLLogic: ToAREPLLogic
previewContainer: PreviewContainer
Expand Down
4 changes: 2 additions & 2 deletions src/toAREPLLogic.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {PythonExecutor, ExecArgs} from "arepl-backend"
import {PythonExecutors, ExecArgs} from "arepl-backend"

Check failure on line 1 in src/toAREPLLogic.ts

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

Module '"../node_modules/arepl-backend"' has no exported member 'PythonExecutors'.
import {PreviewContainer} from "./previewContainer"
import {settings} from "./settings"

Expand All @@ -11,7 +11,7 @@ export class ToAREPLLogic{
lastCodeSection = ""
lastEndSection = ""

constructor(private PythonExecutor: PythonExecutor, private previewContainer: PreviewContainer){
constructor(private PythonExecutor: PythonExecutors, private previewContainer: PreviewContainer){

}

Expand Down

0 comments on commit 4f819dd

Please sign in to comment.